@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Instrument+Serif:ital@0;1&display=swap');

:root {
    --cream: #fffbfe;
    --charcoal: #1a1a2e;
    --navy: #031a6b;
    --ivory: #f8f7f2;
    --plum: #7a3b69;
    --gold: #c9a959;
    --white: #ffffff;
    --black: #0a0a0f;
    --success: #059669;
    --warning: #d97706;
    --danger: #dc2626;
    --gradient-primary: linear-gradient(135deg, var(--navy) 0%, var(--plum) 100%);
    --gradient-gold: linear-gradient(135deg, var(--gold) 0%, #e0c068 100%);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
    --shadow-xl: 0 24px 64px rgba(0,0,0,0.16);
    --blur-bg: blur(20px) saturate(180%);
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

/* Hide scrollbar for Chrome, Safari and Opera */
html::-webkit-scrollbar {
    display: none;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-weight: 400;
    line-height: 1.1;
    color: var(--charcoal);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 3rem);
}

.zoho-shell {
    max-width: 980px;
    margin: 0 auto;
}

.zoho-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 18px 60px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
}

.zoho-card-header {
    padding: 1.5rem 1.75rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    background: linear-gradient(135deg, rgba(3, 26, 107, 0.04) 0%, rgba(122, 59, 105, 0.04) 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.zoho-card-header h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--charcoal);
}

.zoho-card-header p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--charcoal);
    opacity: 0.75;
}

.zoho-card-body {
    padding: 0;
}

[data-zoho-embed] {
    width: 100%;
    display: block;
}

[data-zoho-embed] iframe {
    display: block;
    width: 100%;
    border: 0;
    background: transparent;
}

.zoho-note {
    padding: 1rem 1.75rem 1.5rem;
    font-size: 0.875rem;
    color: var(--charcoal);
    opacity: 0.7;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
        width: 100%;
    }

    .nav-inner {
        padding: 0.5rem 0;
    }

    .nav-cta {
        display: flex;
        gap: 0.5rem;
        align-items: center;
    }

    .nav-cta .btn {
        padding: 0.5rem 0.875rem;
        font-size: 0.75rem;
        border-radius: 8px;
    }

    .hero h1 {
        font-size: 2.25rem;
        line-height: 1.2;
    }

    .hero-text {
        font-size: 1rem;
    }

    /* Fix squashed layout grids */
    .services-bento, 
    .features-grid,
    .team-grid,
    .pricing-grid,
    .info-nav,
    .compliance-grid,
    .footer-links,
    .reviews-grid,
    .about-grid,
    .content-grid {
        grid-template-columns: 1fr !important;
        display: grid !important;
        gap: 1.5rem !important;
    }

    .bento-card {
        min-height: auto;
        padding: 1.5rem;
    }

    .bento-icon {
        width: 48px;
        height: 48px;
    }

    .bento-3d-icon {
        width: 48px;
        height: 48px;
    }

    .about-image-stack {
        height: 250px;
    }

    .footer-main {
        text-align: center;
        gap: 2.5rem;
    }

    .footer-brand {
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .footer-brand p {
        margin: 1rem auto;
    }

    .footer-col h4 {
        margin-bottom: 1rem;
    }

    .footer-col ul {
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .nav-cta .nav-phone {
        display: none;
    }
    
    .logo-icon {
        width: 120px;
        height: 120px;
    }

    .logo-icon .logo-img {
        width: 120px;
        height: 120px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
}

.mini-lab-section {
    background: linear-gradient(180deg, var(--cream) 0%, #f8f7f2 100%);
    position: relative;
    overflow: hidden;
}

.mini-lab {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.5rem;
    align-items: stretch;
}

.mini-lab-card {
    background: var(--white);
    border-radius: 22px;
    padding: 2rem;
    box-shadow: 0 22px 70px rgba(0,0,0,0.10);
    border: 1px solid rgba(0,0,0,0.04);
    height: 100%;
}

.mini-lab-step {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--plum);
    margin-bottom: 0.75rem;
}

.mini-lab-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--charcoal);
    margin-bottom: 1.25rem;
}

.mini-lab-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.mini-lab-btn {
    padding: 1rem 1rem;
    border-radius: 16px;
    border: 1.5px solid rgba(0,0,0,0.08);
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fc 100%);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--charcoal);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    text-align: left;
}

.mini-lab-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(0,0,0,0.10);
    border-color: rgba(122, 59, 105, 0.35);
}

.mini-lab-btn.active {
    background: linear-gradient(135deg, var(--navy) 0%, var(--plum) 100%);
    color: var(--white);
    border-color: transparent;
}

.mini-lab-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.mini-lab-visual {
    background: linear-gradient(135deg, rgba(3, 26, 107, 0.06) 0%, rgba(122, 59, 105, 0.06) 100%);
    border-radius: 22px;
    border: 1px solid rgba(0,0,0,0.04);
    padding: 1.25rem;
    height: 100%;
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 1rem;
}

.mini-lab-tooth {
    width: 100%;
    height: 210px;
    border-radius: 18px;
    overflow: hidden;
    background: radial-gradient(circle at 50% 30%, rgba(255,255,255,0.65) 0%, rgba(255,255,255,0.2) 45%, transparent 70%);
}

.mini-lab-tooth canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

.mini-lab-result {
    background: rgba(255,255,255,0.8);
    border-radius: 18px;
    padding: 1.25rem 1.25rem;
    border: 1px solid rgba(0,0,0,0.06);
}

.result-label {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--navy);
    opacity: 0.85;
    margin-bottom: 0.5rem;
}

.result-text {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--charcoal);
    opacity: 0.85;
}

.result-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

.result-link {
    font-weight: 700;
    color: var(--plum);
    text-decoration: none;
}

.mini-lab-note {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: var(--charcoal);
    opacity: 0.75;
}

.mini-lab-note a {
    color: var(--plum);
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 992px) {
    .mini-lab {
        grid-template-columns: 1fr;
    }
    .mini-lab-tooth {
        height: 190px;
    }
}

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a1a 0%, var(--navy) 50%, #0a0a1a 100%);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s ease;
    overflow: hidden;
}

.page-loader::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(122, 59, 105, 0.15) 0%, transparent 50%);
    animation: loaderPulse 3s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.loader-3d-tooth {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    position: relative;
}

.loader-3d-tooth::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 20px;
    background: radial-gradient(ellipse, rgba(122, 59, 105, 0.3) 0%, transparent 70%);
    filter: blur(5px);
}

.loader-3d-tooth canvas {
    width: 100% !important;
    height: 100% !important;
}

.loader-tooth {
    width: 80px;
    height: 96px;
    margin: 0 auto 2rem;
    color: var(--gold);
    position: relative;
}

.loader-tooth svg {
    width: 100%;
    height: 100%;
    animation: toothFloat 2s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(212, 175, 55, 0.3));
}

@keyframes toothFloat {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
    animation: textFade 2s ease-in-out infinite;
}

@keyframes textFade {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.loader-subtext {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 2rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.loader-bar {
    width: 240px;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.loader-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.loader-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--plum), var(--gold));
    background-size: 200% 100%;
    animation: progressGlow 2s ease-in-out infinite;
    width: 0%;
    transition: width 0.3s ease-out;
    border-radius: 4px;
}

@keyframes progressGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(122, 59, 105, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    opacity: 0;
}

body:hover .cursor-glow {
    opacity: 1;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s var(--ease-out-expo);
    background: transparent;
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 0.75rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.nav.scrolled .logo-icon {
    width: 100px;
    height: 100px;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    text-decoration: none;
}

.logo-icon {
    width: 160px;
    height: 160px;
    color: var(--navy);
    transition: transform 0.3s var(--ease-spring);
}

.logo:hover .logo-icon {
    transform: scale(1.05);
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-icon .logo-tooth-3d {
    width: 80px;
    height: 90px;
    display: block;
}

.logo-icon .logo-tooth-3d canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

.logo-icon .logo-img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    display: block;
}

.nav .logo-text {
    display: none;
}

.footer .logo-img {
    filter: brightness(0) invert(1);
}

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

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--charcoal);
    font-size: 0.875rem;
    font-weight: 500;
    position: relative;
    padding: 0.25rem 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.4s var(--ease-out-expo);
}

.nav-links a:hover {
    color: var(--navy);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-cta .btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--charcoal);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-phone:hover {
    background: var(--ivory);
    color: var(--navy);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(3, 26, 107, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(3, 26, 107, 0.35);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    color: var(--charcoal);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.btn-glass:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-white {
    background: var(--white);
    color: var(--navy);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

.menu-toggle {
    display: none;
    width: 28px;
    height: 20px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out-expo);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--cream);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-out-expo);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
}

.mobile-menu li {
    margin: 1.5rem 0;
}

.mobile-menu a {
    font-family: 'Instrument Serif', serif;
    font-size: 2rem;
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--plum);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 80% 60% at 10% 20%, rgba(3, 26, 107, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 90% 80%, rgba(122, 59, 105, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, var(--cream) 0%, var(--ivory) 100%);
}

.hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(3, 26, 107, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(3, 26, 107, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 70%);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: float-orb 20s ease-in-out infinite;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: var(--navy);
    top: -10%;
    right: 10%;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: var(--plum);
    bottom: 10%;
    left: -5%;
    animation-delay: -7s;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: var(--gold);
    top: 50%;
    right: 30%;
    animation-delay: -14s;
    opacity: 0.3;
}

@keyframes float-orb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -40px) scale(1.05); }
    66% { transform: translate(-30px, 30px) scale(0.95); }
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
}

.hero-content {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem 0.5rem 0.5rem;
    background: var(--white);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    position: relative;
}

.badge-pulse::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: badge-pulse 2s ease-out infinite;
}

@keyframes badge-pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(3); opacity: 0; }
}

.hero h1 {
    font-size: clamp(2.75rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-line {
    display: block;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    font-size: 1.125rem;
    color: var(--charcoal);
    opacity: 0.7;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Instrument Serif', serif;
    font-size: 2.5rem;
    color: var(--navy);
    line-height: 1;
}

.stat-number::after {
    content: '+';
    font-size: 1.5rem;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--charcoal);
    opacity: 0.6;
    margin-top: 0.25rem;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
}

.hero-3d {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.model-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.model-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    transform: translate(-50%, -50%);
}

.hero-3d-canvas {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
}

.hero-3d-canvas canvas {
    width: 100% !important;
    height: 100% !important;
}

.model-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(3, 26, 107, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ring-pulse 4s ease-out infinite;
}

.model-ring-1 {
    width: 420px;
    height: 420px;
    animation-delay: 0s;
}

.model-ring-2 {
    width: 480px;
    height: 480px;
    animation-delay: 1s;
}

@keyframes ring-pulse {
    0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}

.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.875rem;
    animation: float 5s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 15%;
    left: -5%;
    animation-delay: -2.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.floating-card-icon {
    width: 44px;
    height: 44px;
    background: rgba(5, 150, 105, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--success);
}

.floating-card-icon.emergency {
    background: rgba(3, 26, 107, 0.1);
    color: var(--navy);
}

.floating-card-text strong {
    display: block;
    font-size: 0.875rem;
    color: var(--charcoal);
}

.floating-card-text span {
    font-size: 0.75rem;
    color: var(--charcoal);
    opacity: 0.6;
}

.scroll-indicator {
    display: none !important;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid currentColor;
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: currentColor;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(8px); }
}

.scroll-indicator span {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

.trust-banner {
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.5rem 0;
}

.trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--charcoal);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.trust-item:hover {
    opacity: 1;
}

.trust-item svg {
    color: var(--navy);
}

.trust-item span {
    font-size: 0.8125rem;
    font-weight: 500;
}

.section {
    padding: clamp(5rem, 10vw, 8rem) 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.section-header.light {
    color: var(--white);
}

.section-header.light h2 {
    color: var(--white);
}

.section-tag,
.section-label {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--plum);
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(122, 59, 105, 0.08);
    border-radius: 100px;
}

.section-header.light .section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold);
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.0625rem;
    opacity: 0.7;
    line-height: 1.7;
}

.services-showcase {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    align-items: start;
}

.service-3d-viewer {
    position: sticky;
    top: 120px;
    background: var(--white);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.viewer-tabs {
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--ivory);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.viewer-tab {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: inherit;
    color: var(--charcoal);
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.viewer-tab:hover {
    background: rgba(0, 0, 0, 0.05);
}

.viewer-tab.active {
    background: var(--gradient-primary);
    color: var(--white);
}

.viewer-frame {
    position: relative;
    height: 350px;
}

.tooth-viewer-canvas {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #f8f7f2 0%, #fffbfe 100%);
}

.tooth-viewer-canvas canvas {
    width: 100% !important;
    height: 100% !important;
    cursor: grab;
}

.tooth-viewer-canvas canvas:active {
    cursor: grabbing;
}

.viewer-overlay {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    pointer-events: none;
}

.viewer-overlay span {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
}

.viewer-overlay small {
    font-size: 0.625rem;
    opacity: 0.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before {
    opacity: 0.03;
}

.service-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--white);
    background: var(--gradient-gold);
    padding: 0.25rem 0.625rem;
    border-radius: 100px;
}

.service-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(3, 26, 107, 0.02) 0%, rgba(122, 59, 105, 0.02) 100%);
    border-color: rgba(3, 26, 107, 0.1);
}

.service-card-icon {
    width: 48px;
    height: 48px;
    background: var(--ivory);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s var(--ease-spring);
}

.service-card:hover .service-card-icon {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.1) rotate(-5deg);
}

.service-card-icon svg {
    width: 24px;
    height: 24px;
}

.service-card-content {
    flex: 1;
}

.service-card-content h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.375rem;
}

.service-card-content p {
    font-size: 0.8125rem;
    opacity: 0.7;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.service-price {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--plum);
}

.service-card-arrow {
    width: 36px;
    height: 36px;
    background: var(--ivory);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s var(--ease-spring);
    opacity: 0;
    transform: translateX(-10px);
}

.service-card:hover .service-card-arrow {
    opacity: 1;
    transform: translateX(0);
    background: var(--gradient-primary);
    color: var(--white);
}

.service-card-more {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    justify-content: space-between;
}

.service-card-more h3 {
    color: var(--white);
}

.service-card-more p {
    color: var(--white);
    opacity: 0.8;
}

.service-card-more .service-card-arrow {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    opacity: 1;
    transform: translateX(0);
}

.service-card-more:hover .service-card-arrow {
    background: var(--white);
    color: var(--navy);
}

.dental-showcase-section {
    background: linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%);
    overflow: hidden;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.showcase-item {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s var(--ease-out-expo);
}

.showcase-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.showcase-item.featured {
    grid-column: span 1.5;
    background: linear-gradient(135deg, rgba(3, 26, 107, 0.02) 0%, rgba(122, 59, 105, 0.02) 100%);
    border-color: rgba(3, 26, 107, 0.1);
}

.showcase-3d {
    height: 220px;
    background: linear-gradient(180deg, #f8f7f2 0%, #fffbfe 100%);
    position: relative;
}

.showcase-3d canvas {
    width: 100% !important;
    height: 100% !important;
    cursor: grab;
}

.showcase-3d canvas:active {
    cursor: grabbing;
}

.showcase-info {
    padding: 1.25rem 1.5rem 1.5rem;
}

.showcase-info h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.showcase-info p {
    font-size: 0.8125rem;
    opacity: 0.7;
    line-height: 1.6;
    margin-bottom: 0;
}

.showcase-item.featured .showcase-info p {
    margin-bottom: 1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
}

.service-3d-model {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-model-viewer {
    height: 350px;
    background: linear-gradient(180deg, #f8f7f2 0%, #fffbfe 100%);
}

.service-model-viewer canvas {
    width: 100% !important;
    height: 100% !important;
    cursor: grab;
}

.service-model-viewer canvas:active {
    cursor: grabbing;
}

.model-label {
    padding: 0.875rem 1.25rem;
    text-align: center;
    font-size: 0.75rem;
    color: var(--charcoal);
    opacity: 0.6;
    background: var(--ivory);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.feature-check {
    width: 24px;
    height: 24px;
    background: rgba(5, 150, 105, 0.1);
    color: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--charcoal);
}

.section-ivory {
    background: var(--ivory);
}

.compliance-section {
    background: var(--charcoal);
    padding: 3rem 0;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.compliance-item {
    text-align: center;
    color: var(--white);
}

.compliance-item img {
    width: 40px;
    height: 40px;
    filter: invert(1);
    opacity: 0.8;
    margin-bottom: 0.75rem;
}

.compliance-item h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.compliance-item p {
    font-size: 0.75rem;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .features-list {
        grid-template-columns: 1fr;
    }
    .compliance-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-section {
    background: var(--ivory);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image-stack {
    position: relative;
}

.about-image {
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-image-1 {
    position: relative;
    z-index: 2;
}

.about-image-2 {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 50%;
    z-index: 3;
    border: 4px solid var(--ivory);
}

.about-experience {
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    z-index: 4;
    box-shadow: var(--shadow-lg);
}

.experience-number {
    font-family: 'Instrument Serif', serif;
    font-size: 3rem;
    line-height: 1;
}

.experience-text {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 0.25rem;
}

.about-content {
    max-width: 500px;
}

.about-content h2 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    margin-bottom: 1.25rem;
}

.about-lead {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.about-content p {
    font-size: 1rem;
    opacity: 0.7;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-icon {
    width: 28px;
    height: 28px;
    background: rgba(5, 150, 105, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--success);
}

.feature-icon svg {
    width: 16px;
    height: 16px;
}

.about-feature span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--charcoal);
}

.offers-section {
    position: relative;
    overflow: hidden;
}

.offers-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.offers-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
}

.offers-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.03) 1px, transparent 0);
    background-size: 40px 40px;
}

.offers-section .container {
    position: relative;
    z-index: 2;
}

.offers-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.offer-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    transition: all 0.4s var(--ease-out-expo);
}

.offer-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
}

.offer-visual {
    height: 200px;
    position: relative;
    background: rgba(0, 0, 0, 0.2);
}

.offer-3d {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
}

.offer-3d canvas {
    width: 100% !important;
    height: 100% !important;
    cursor: grab;
}

.offer-3d canvas:active {
    cursor: grabbing;
}

.before-after-slider {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: #000;
}

.ba-container {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: grab;
    user-select: none;
}

.ba-container:active {
    cursor: grabbing;
}

.ba-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.ba-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ba-before {
    z-index: 1;
}

.ba-after {
    z-index: 2;
    clip-path: inset(0 0 0 50%);
}

.ba-slider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(-50%);
    z-index: 10;
    pointer-events: none;
}

.ba-slider-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--white);
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.ba-slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 4px rgba(255, 255, 255, 0.2);
    cursor: grab;
    pointer-events: all;
    transition: transform 0.1s ease-out, box-shadow 0.2s ease;
    color: var(--navy);
}

.ba-slider-handle:active {
    cursor: grabbing;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4), 0 0 0 6px rgba(255, 255, 255, 0.3);
}

.ba-slider-handle svg {
    width: 20px;
    height: 20px;
}

.ba-labels {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    z-index: 10;
    pointer-events: none;
}

.ba-label {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ba-label-before {
    background: rgba(122, 59, 105, 0.8);
}

.ba-label-after {
    background: rgba(3, 26, 107, 0.8);
}

.offer-content {
    padding: 1.5rem;
    color: var(--white);
}

.offer-tag {
    display: inline-block;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--charcoal);
    background: var(--gradient-gold);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    margin-bottom: 0.75rem;
}

.offer-content h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.offer-price {
    margin-bottom: 0.75rem;
}

.price-amount {
    font-family: 'Instrument Serif', serif;
    font-size: 2rem;
    color: var(--gold);
}

.price-note {
    display: block;
    font-size: 0.75rem;
    opacity: 0.7;
}

.offer-content p {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.testimonials-section {
    background: var(--cream);
}

/* Google Rating Display */
.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.google-icon {
    flex-shrink: 0;
}

.rating-score {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
}

.rating-stars {
    display: flex;
    gap: 0.125rem;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.review-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 1.75rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.review-stars {
    color: #FBBC05;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.review-date {
    font-size: 0.8rem;
    color: var(--charcoal);
    opacity: 0.6;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--charcoal);
    margin-bottom: 1.25rem;
    flex: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--plum) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    flex-shrink: 0;
}

.author-info strong {
    display: block;
    font-size: 0.9rem;
    color: var(--charcoal);
}

.author-info span {
    font-size: 0.75rem;
    color: var(--charcoal);
    opacity: 0.6;
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* View All Reviews Link */
.view-all-reviews {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: var(--navy);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-all-reviews:hover {
    color: var(--plum);
    gap: 0.75rem;
}

/* Practice Gallery */
.gallery-section {
    background: var(--ivory);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.gallery-large {
    grid-column: span 2;
    grid-row: span 2;
}

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

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .gallery-item.gallery-large {
        grid-column: span 2;
        grid-row: span 1;
        height: 280px;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.gallery-large {
        grid-column: span 1;
    }
}

.contact-section {
    background: var(--ivory);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 1rem;
}

.contact-info > p {
    font-size: 1rem;
    opacity: 0.7;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.contact-text strong {
    display: block;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    color: var(--charcoal);
}

.contact-text span, .contact-text a {
    font-size: 0.9375rem;
    color: var(--charcoal);
    opacity: 0.7;
    text-decoration: none;
    line-height: 1.5;
}

.contact-text a:hover {
    opacity: 1;
    color: var(--plum);
}

.gdc-info {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.gdc-info h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.gdc-info p {
    font-size: 0.8125rem;
    opacity: 0.7;
    line-height: 1.5;
}

.gdc-info a {
    color: var(--plum);
    text-decoration: none;
    font-weight: 500;
}

.gdc-info a:hover {
    text-decoration: underline;
}

.contact-map {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-wrapper {
    height: 350px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(20%) contrast(1.05);
}

.contact-map .btn {
    margin: 1rem;
    width: calc(100% - 2rem);
}

.cta-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cta-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    color: var(--white);
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    opacity: 0.85;
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Page Hero Styles */
.page-hero {
    background: linear-gradient(180deg, var(--cream) 0%, var(--ivory) 100%);
    padding: 8rem 0 4rem;
    text-align: center;
}

.page-hero-compact {
    padding: 7rem 0 3rem;
}

.page-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--plum);
    background: rgba(122, 59, 105, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.125rem;
    color: var(--charcoal);
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Trust Banner Link Styles */
.trust-item-link {
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.trust-item-link:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.trust-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* Image Protection */
img {
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

/* Bento 3D Icon */
.bento-3d-icon {
    width: 64px;
    height: 64px;
    position: relative;
}

/* Teeth Whitening Card Fix */
.bento-whitening {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.bento-whitening .bento-content h3,
.bento-whitening .bento-content p,
.bento-whitening .bento-price {
    color: var(--white);
}

.bento-whitening .bento-arrow {
    color: var(--white);
}

.footer {
    background: var(--black);
    color: var(--white);
    padding: 5rem 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1.25rem;
}

.footer-brand .logo-icon {
    width: 80px;
    height: 90px;
    color: var(--gold);
}

.footer-brand .logo-img {
    filter: brightness(0) invert(1);
}

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

.footer-brand .logo-text span {
    color: var(--gold);
}

.footer-brand p {
    font-size: 0.9375rem;
    opacity: 0.5;
    max-width: 300px;
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col a {
    color: var(--white);
    opacity: 0.5;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: opacity 0.2s ease;
}

.footer-col a:hover {
    opacity: 1;
}

.footer-col li:not(:has(a)) {
    color: var(--white);
    opacity: 0.5;
    font-size: 0.9375rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 0.8125rem;
    opacity: 0.65;
}

.footer-badges {
    display: flex;
    gap: 1.5rem;
}

.footer-badges span {
    font-size: 0.75rem;
    opacity: 0.65;
}

.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 2000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
    border-radius: 18px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 980px;
    margin: 0 auto;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.cookie-text strong {
    font-size: 0.9375rem;
    color: var(--charcoal);
}

.cookie-text span {
    font-size: 0.8125rem;
    color: var(--charcoal);
    opacity: 0.75;
    line-height: 1.4;
}

.cookie-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }
    .cookie-actions {
        width: 100%;
    }
    .cookie-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

.chatbot {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
}

.chatbot-toggle {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(3, 26, 107, 0.4);
    transition: all 0.4s var(--ease-spring);
    position: relative;
    color: var(--white);
}

.chatbot-toggle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    animation: pulse-ring 2s ease-out infinite;
    z-index: -1;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.4); opacity: 0; }
}

.chatbot-toggle:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 40px rgba(3, 26, 107, 0.5);
}

.chatbot-toggle:hover::before {
    animation: none;
}

.chatbot-toggle.active .chat-icon {
    display: none;
}

.chatbot-toggle .close-icon {
    display: none;
    font-size: 1.75rem;
    color: white;
    font-weight: 300;
}

.chatbot-toggle.active .close-icon {
    display: block;
}

.chatbot-toggle.active::before {
    animation: none;
}

.chatbot-window {
    position: absolute;
    bottom: 84px;
    right: 0;
    width: 400px;
    max-height: 600px;
    background: var(--white);
    border-radius: var(--border-radius-xl);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s var(--ease-out-expo);
    display: flex;
    flex-direction: column;
}

.chatbot-window.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chatbot-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    flex-shrink: 0;
}

.chatbot-avatar {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.chatbot-avatar svg {
    width: 24px;
    height: 28px;
}

.chatbot-header-text h4 {
    color: var(--white);
    font-size: 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
}

.chatbot-header-text span {
    font-size: 0.75rem;
    opacity: 0.75;
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: linear-gradient(180deg, var(--cream) 0%, #f8f7f2 100%);
}

.chatbot-messages::-webkit-scrollbar {
    width: 6px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.1);
    border-radius: 3px;
}

.chat-message {
    max-width: 88%;
    padding: 0.875rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.8125rem;
    line-height: 1.6;
    animation: messageIn 0.35s var(--ease-out-expo);
    white-space: pre-line;
}

@keyframes messageIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-message.bot {
    background: var(--white);
    color: var(--charcoal);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.chat-message.user {
    background: var(--gradient-primary);
    color: var(--white);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-message.ai {
    background: linear-gradient(135deg, #f5f0f8 0%, #ebe4ef 100%);
    color: var(--charcoal);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    border: 1px solid rgba(122, 59, 105, 0.15);
    padding: 0.75rem 1rem;
}

.chat-message.ai .ai-label {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--plum);
    margin-bottom: 0.5rem;
    padding: 0.25rem 0.5rem;
    background: rgba(122, 59, 105, 0.1);
    border-radius: 4px;
    width: fit-content;
}

.chat-message.ai .ai-content {
    color: var(--charcoal);
    line-height: 1.65;
}

.chat-message.ai .ai-inline-disclaimer {
    font-size: 0.6875rem;
    color: var(--plum);
    opacity: 0.7;
    margin-top: 0.625rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(122, 59, 105, 0.1);
    font-style: italic;
}

.followup-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--charcoal);
    opacity: 0.5;
    margin-bottom: 0.5rem;
}

.chat-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.chat-option {
    padding: 0.625rem 0.875rem;
    background: var(--cream);
    border: 1.5px solid rgba(3, 26, 107, 0.12);
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 500;
    font-family: inherit;
    color: var(--navy);
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: left;
}

.chat-option:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
    transform: translateY(-1px);
}

.chat-option.emergency {
    border-color: rgba(220, 38, 38, 0.3);
    color: var(--danger);
    background: rgba(254, 242, 242, 0.5);
}

.chat-option.emergency:hover {
    background: var(--danger);
    color: var(--white);
    border-color: var(--danger);
}

.chat-option.ai-option {
    border-color: rgba(122, 59, 105, 0.25);
    color: var(--plum);
    background: rgba(122, 59, 105, 0.05);
}

.chat-option.ai-option:hover {
    background: var(--plum);
    color: var(--white);
    border-color: var(--plum);
}

.chatbot-input {
    padding: 1rem 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    gap: 0.75rem;
    background: var(--white);
    flex-shrink: 0;
}

.chatbot-input input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    font-size: 0.8125rem;
    font-family: inherit;
    background: var(--cream);
}

.chatbot-input input:focus {
    outline: none;
    border-color: var(--plum);
    background: var(--white);
}

.chatbot-input button {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--white);
}

.chatbot-input button:hover {
    transform: scale(1.05);
}

.emergency-info-card {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 1px solid #fecaca;
    border-radius: 14px;
    padding: 1rem;
}

.emergency-info-card .emergency-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--danger);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.emergency-info-card p {
    font-size: 0.8125rem;
    color: #991b1b;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.emergency-call-btn, .chat-call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--danger);
    color: var(--white);
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.emergency-call-btn:hover, .chat-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.chat-call-btn {
    background: var(--gradient-primary);
    width: 100%;
}

.chat-call-btn:hover {
    box-shadow: 0 4px 12px rgba(3, 26, 107, 0.3);
}

.chat-call-btn.secondary {
    background: linear-gradient(145deg, #1d4ed8 0%, #1e40af 100%);
}

.nhs-card {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
}

.nhs-card strong {
    display: block;
    color: #1d4ed8;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.nhs-card p {
    font-size: 0.75rem;
    color: #1e40af;
    margin-top: 0.75rem;
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 0.875rem 1rem;
    background: var(--white);
    border-radius: var(--border-radius);
    border-bottom-left-radius: 4px;
    align-self: flex-start;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: var(--plum);
    border-radius: 50%;
    opacity: 0.4;
    animation: typing 1.4s ease-in-out infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% { opacity: 0.4; transform: translateY(0); }
    30% { opacity: 1; transform: translateY(-4px); }
}

.page-header {
    padding: 10rem 0 4rem;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.03) 1px, transparent 0);
    background-size: 40px 40px;
}

.page-header h1 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 0.75rem;
    position: relative;
}

.page-header p {
    font-size: 1.0625rem;
    opacity: 0.7;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.8125rem;
    position: relative;
}

.breadcrumb a {
    color: var(--white);
    opacity: 0.6;
    text-decoration: none;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb span {
    opacity: 0.3;
}

.content-section {
    padding: 5rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.form-group label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--charcoal);
}

.form-group input, .form-group select, .form-group textarea {
    padding: 0.875rem 1rem;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    font-size: 0.9375rem;
    font-family: inherit;
    background: var(--cream);
    transition: all 0.3s ease;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--plum);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(122, 59, 105, 0.1);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: grid;
    gap: 1.25rem;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1rem;
    background: var(--cream);
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 0.875rem;
}

.checkbox-item:hover {
    border-color: var(--plum);
    background: var(--white);
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--plum);
    cursor: pointer;
}

.checkbox-item span {
    color: var(--charcoal);
    font-weight: 500;
}

.checkbox-item:has(input:checked) {
    border-color: var(--plum);
    background: rgba(122, 59, 105, 0.05);
}

.form-message {
    padding: 1rem 1.25rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    line-height: 1.5;
}

.form-message.success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.form-message.error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.form-message a {
    color: inherit;
    font-weight: 600;
}

.price-table {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.price-table-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1.5rem;
    text-align: center;
}

.price-table-header h3 {
    font-size: 1.1875rem;
    color: var(--white);
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    font-size: 0.9375rem;
}

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

.price-row span:last-child {
    font-weight: 600;
    color: var(--navy);
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-3d {
        min-height: 350px;
    }
    .model-container {
        width: 300px;
        height: 300px;
    }
    .floating-card {
        display: none;
    }
    .services-showcase {
        grid-template-columns: 1fr;
    }
    .service-3d-viewer {
        position: static;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-card.featured {
        grid-column: span 1;
    }
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .showcase-item.featured {
        grid-column: span 1;
    }
    .about-grid, .content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .content-grid.reverse {
        direction: ltr;
    }
    .offers-carousel {
        grid-template-columns: 1fr;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

.chatbot-v2 {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
}

.chatbot-toggle-v2 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--plum) 100%);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(3, 26, 107, 0.35), 0 0 0 0 rgba(122, 59, 105, 0.4);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    color: var(--white);
    animation: chatPulse 3s ease-in-out infinite;
}

@keyframes chatPulse {
    0%, 100% { box-shadow: 0 8px 32px rgba(3, 26, 107, 0.35), 0 0 0 0 rgba(122, 59, 105, 0.4); }
    50% { box-shadow: 0 8px 32px rgba(3, 26, 107, 0.35), 0 0 0 12px rgba(122, 59, 105, 0); }
}

.chatbot-toggle-v2:hover {
    transform: scale(1.1) rotate(5deg);
    animation: none;
}

.toggle-inner {
    position: relative;
    width: 26px;
    height: 26px;
}

.toggle-inner .chat-icon,
.toggle-inner .close-icon {
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s ease;
}

.toggle-inner .close-icon {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

.chatbot-toggle-v2.active .chat-icon {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

.chatbot-toggle-v2.active .close-icon {
    opacity: 1;
    transform: rotate(0) scale(1);
}

.chatbot-toggle-v2.active {
    animation: none;
    background: var(--charcoal);
}

.chat-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 22px;
    height: 22px;
    background: var(--gold);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.chatbot-toggle-v2:not(.active) .chat-badge {
    opacity: 1;
    transform: scale(1);
}

.chatbot-window-v2 {
    position: absolute;
    bottom: 76px;
    right: 0;
    width: 380px;
    height: 520px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0,0,0,0.05);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
}

.chatbot-window-v2.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chatbot-header-v2 {
    background: linear-gradient(135deg, var(--navy) 0%, #1a2a5e 100%);
    color: var(--white);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.chatbot-header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chatbot-avatar-v2 {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
}

.chatbot-avatar-v2 svg {
    width: 20px;
    height: 24px;
}

.status-dot {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background: #22c55e;
    border-radius: 50%;
    border: 2px solid var(--navy);
}

.chatbot-header-text-v2 h4 {
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.125rem;
}

.status-text {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.chatbot-header-actions {
    display: flex;
    gap: 0.25rem;
}

.chat-action-btn {
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,0.08);
    border: none;
    border-radius: 10px;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.chat-action-btn:hover {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

.chatbot-messages-v2 {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    background: linear-gradient(180deg, #f8f9fc 0%, #f4f5f8 100%);
    scroll-behavior: smooth;
}

.chatbot-messages-v2::-webkit-scrollbar {
    width: 5px;
}

.chatbot-messages-v2::-webkit-scrollbar-track {
    background: transparent;
}

.chatbot-messages-v2::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.12);
    border-radius: 3px;
}

.chatbot-input-v2 {
    padding: 0.875rem 1rem;
    background: var(--white);
    border-top: 1px solid rgba(0,0,0,0.06);
    flex-shrink: 0;
}

.input-wrapper {
    display: flex;
    gap: 0.5rem;
    background: #f4f5f8;
    border-radius: 14px;
    padding: 0.375rem;
    border: 1.5px solid transparent;
    transition: all 0.2s ease;
}

.input-wrapper:focus-within {
    border-color: var(--plum);
    background: var(--white);
}

.chatbot-input-v2 input {
    flex: 1;
    padding: 0.625rem 0.75rem;
    border: none;
    background: transparent;
    font-size: 0.8125rem;
    font-family: inherit;
    color: var(--charcoal);
}

.chatbot-input-v2 input:focus {
    outline: none;
}

.send-btn-v2 {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--plum) 100%);
    border: none;
    border-radius: 10px;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.send-btn-v2:hover {
    transform: scale(1.05);
}

.send-btn-v2:active {
    transform: scale(0.95);
}

.services-section-v2 {
    background: linear-gradient(180deg, var(--cream) 0%, #f8f7f2 100%);
}

.services-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.bento-card {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 1.75rem;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
}

.bento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.bento-card.bento-large {
    grid-column: span 2;
}

.bento-card.bento-featured {
    background: linear-gradient(135deg, var(--navy) 0%, #1a2a5e 100%);
    color: var(--white);
}

.bento-card.bento-featured h3,
.bento-card.bento-featured p,
.bento-card.bento-featured span {
    color: var(--white) !important;
}

.bento-card.bento-featured .bento-price {
    color: var(--gold);
}

.bento-card.bento-featured .bento-icon {
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

.bento-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(122, 59, 105, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.bento-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold);
    color: var(--dark);
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bento-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(3, 26, 107, 0.08) 0%, rgba(122, 59, 105, 0.08) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--navy);
}

.bento-icon svg {
    width: 26px;
    height: 26px;
}

.bento-content {
    flex: 1;
}

.bento-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.bento-content p {
    font-size: 0.875rem;
    opacity: 0.75;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.bento-price {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--plum);
}

.bento-arrow {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 36px;
    height: 36px;
    background: rgba(0,0,0,0.04);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.bento-card.bento-featured .bento-arrow {
    background: rgba(255,255,255,0.1);
}

.bento-card:hover .bento-arrow {
    background: var(--navy);
    color: var(--white);
}

.bento-card.bento-featured:hover .bento-arrow {
    background: var(--gold);
    color: var(--dark);
}

.bento-arrow svg {
    width: 18px;
    height: 18px;
}

.services-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

@media (max-width: 992px) {
    .services-bento {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento-card.bento-large {
        grid-column: span 1;
    }
}

@media (max-width: 600px) {
    .services-bento {
        grid-template-columns: 1fr;
    }
}

.pricing-section {
    background: var(--cream);
}

.pricing-intro {
    margin-bottom: 3rem;
}

.pricing-note {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--gold);
}

.pricing-note svg {
    flex-shrink: 0;
    color: var(--gold);
}

.pricing-note p {
    font-size: 0.9375rem;
    color: var(--charcoal);
    margin: 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.pricing-category {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.pricing-category-featured {
    background: linear-gradient(135deg, rgba(122, 59, 105, 0.05) 0%, rgba(3, 26, 107, 0.05) 100%);
    border: 2px solid rgba(122, 59, 105, 0.15);
}

.pricing-category-highlight {
    background: linear-gradient(135deg, var(--navy) 0%, #1a2a5e 100%);
    color: var(--white);
}

.pricing-category-highlight .pricing-name,
.pricing-category-highlight .pricing-cost {
    color: var(--white);
}

.pricing-category-highlight .pricing-dots {
    border-color: rgba(255,255,255,0.2);
}

.pricing-category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    position: relative;
}

.pricing-category-highlight .pricing-category-header {
    border-color: rgba(255,255,255,0.1);
}

.pricing-category-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(3, 26, 107, 0.1) 0%, rgba(122, 59, 105, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    overflow: hidden; /* For 3D canvas */
}

.pricing-category-icon.bento-3d-icon canvas {
    width: 100% !important;
    height: 100% !important;
}

.pricing-category-highlight .pricing-category-icon {
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

.pricing-category-icon svg {
    width: 24px;
    height: 24px;
}

.pricing-category-header h2 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin: 0;
}

.pricing-category-badge {
    position: absolute;
    top: -0.5rem;
    right: 0;
    background: var(--gold);
    color: var(--dark);
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.25rem 0.625rem;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-list {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.pricing-item {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    padding: 0.25rem 0;
}

.pricing-item.featured {
    background: rgba(122, 59, 105, 0.08);
    margin: 0 -1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    align-items: baseline;
}

.pricing-name {
    font-size: 0.9375rem;
    color: var(--charcoal);
    flex: 1;
    line-height: 1.4;
}

.pricing-dots {
    flex: 1;
    border-bottom: 2px dotted rgba(0,0,0,0.1);
    min-width: 10px;
    margin-bottom: 4px;
    opacity: 0.5;
}

.pricing-cost {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--navy);
    white-space: nowrap;
    flex-shrink: 0;
}

.pricing-category-footer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.pricing-category-footer p {
    font-size: 0.875rem;
    opacity: 0.85;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.pricing-cta {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.pricing-cta-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-cta-content p {
    color: var(--charcoal);
    opacity: 0.75;
    margin: 0;
}

.pricing-cta-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .pricing-cta {
        flex-direction: column;
        text-align: center;
    }
    .pricing-cta-actions {
        width: 100%;
        flex-direction: column;
    }
}

.complaints-section {
    background: var(--cream);
}

.complaints-content {
    max-width: 800px;
    margin: 0 auto;
}

.complaints-intro {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.complaints-intro p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--charcoal);
    margin: 0;
}

.complaints-steps h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.step-card {
    display: flex;
    gap: 1.5rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--plum) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.step-content p {
    font-size: 0.9375rem;
    color: var(--charcoal);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.step-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-content li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.375rem;
    font-size: 0.9375rem;
    color: var(--charcoal);
}

.step-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

.address-box {
    background: var(--cream);
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin: 1rem 0;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.complaints-external {
    margin-top: 3rem;
}

.complaints-external h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.complaints-external > p {
    font-size: 0.9375rem;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.external-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.external-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.external-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.external-card p {
    font-size: 0.875rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.external-card a {
    color: var(--plum);
}

.complaints-commitment {
    margin-top: 3rem;
    background: linear-gradient(135deg, var(--navy) 0%, #1a2a5e 100%);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
}

.commitment-icon {
    margin-bottom: 1rem;
}

.commitment-icon svg {
    color: var(--gold);
}

.complaints-commitment h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.complaints-commitment p {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.info-overview {
    background: var(--cream);
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.info-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.info-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border-radius: 16px;
    text-decoration: none;
    color: var(--charcoal);
    transition: all 0.3s ease;
    min-width: 120px;
    border: 2px solid transparent;
}

.info-nav-item:hover {
    border-color: var(--plum);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(122, 59, 105, 0.15);
}

.info-nav-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(3, 26, 107, 0.08) 0%, rgba(122, 59, 105, 0.08) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    overflow: hidden; /* For 3D canvas */
}

.info-nav-icon.bento-3d-icon canvas {
    width: 100% !important;
    height: 100% !important;
}

.info-nav-icon svg {
    width: 22px;
    height: 22px;
}

.info-nav-item span {
    font-size: 0.8125rem;
    font-weight: 600;
}

.info-section {
    background: var(--white);
}

.info-section-alt {
    background: var(--cream);
}

.info-block {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
}

.info-block-reverse {
    grid-template-columns: 400px 1fr;
}

.info-block-reverse .info-block-content {
    order: 2;
}

.info-block-reverse .info-block-visual {
    order: 1;
}

.info-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--plum);
    margin-bottom: 0.75rem;
}

.info-label-urgent {
    color: #dc2626;
}

.info-block-content h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.info-block-content p {
    font-size: 1rem;
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 1rem;
    opacity: 0.85;
}

.info-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.info-feature {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    color: var(--charcoal);
}

.info-feature svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
    flex-shrink: 0;
}

.info-visual-card {
    background: var(--cream);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
}

.info-visual-featured {
    background: linear-gradient(135deg, var(--navy) 0%, #1a2a5e 100%);
    color: var(--white);
}

.info-visual-emergency {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 2px solid #fecaca;
}

.info-visual-badge {
    position: absolute;
    top: -0.5rem;
    right: 1.5rem;
    background: var(--gold);
    color: var(--dark);
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-visual-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(3, 26, 107, 0.1) 0%, rgba(122, 59, 105, 0.1) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    margin-bottom: 1rem;
    overflow: hidden; /* For 3D canvas */
}

.info-visual-icon.bento-3d-icon canvas {
    width: 100% !important;
    height: 100% !important;
}

.info-visual-featured .info-visual-icon {
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

.info-visual-icon-fun {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
    color: var(--gold);
}

.info-visual-icon svg {
    width: 28px;
    height: 28px;
}

.info-visual-card h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.info-price-list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-bottom: 1rem;
}

.info-price-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.info-price-row span:last-child {
    font-weight: 600;
    color: var(--navy);
}

.info-note {
    font-size: 0.8125rem;
    color: var(--charcoal);
    opacity: 0.7;
    font-style: italic;
}

.info-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.info-benefits li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.625rem;
    font-size: 0.9375rem;
}

.info-benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

.info-price-highlight {
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
}

.info-price-highlight span {
    display: block;
    font-size: 0.75rem;
    opacity: 0.8;
    margin-bottom: 0.25rem;
}

.info-price-highlight strong {
    font-size: 1.5rem;
    color: var(--gold);
}

.emergency-contact {
    margin: 1.5rem 0;
}

.emergency-phone {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--plum) 100%);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 12px;
}

.emergency-phone svg {
    width: 24px;
    height: 24px;
}

.emergency-phone span {
    display: block;
    font-size: 0.75rem;
    opacity: 0.8;
}

.emergency-phone a {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
}

.info-alert {
    background: #fef3cd;
    border: 1px solid #ffc107;
    border-radius: 12px;
    padding: 1.25rem;
    margin: 1.5rem 0;
}

.info-alert h4 {
    font-size: 0.9375rem;
    color: #856404;
    margin-bottom: 0.5rem;
}

.info-alert p {
    font-size: 0.875rem;
    color: #856404;
    margin: 0;
    opacity: 1;
}

.info-emergency-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-emergency-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(220, 38, 38, 0.1);
    font-size: 0.9375rem;
    color: #991b1b;
}

.info-emergency-list li:last-child {
    border-bottom: none;
}

.info-emergency-list svg {
    width: 18px;
    height: 18px;
    color: #dc2626;
    flex-shrink: 0;
}

.info-visual-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    opacity: 0.85;
    margin-bottom: 1rem;
}

.info-stats {
    display: flex;
    gap: 1rem;
}

.info-stat {
    flex: 1;
    text-align: center;
    padding: 1rem;
    background: rgba(0,0,0,0.04);
    border-radius: 12px;
}

.info-stat strong {
    display: block;
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.info-stat span {
    font-size: 0.75rem;
    color: var(--charcoal);
    opacity: 0.7;
}

.info-cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, #1a2a5e 100%);
    color: var(--white);
}

.info-cta-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.info-cta-content .info-label {
    color: var(--gold);
}

.info-cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info-cta-content p {
    font-size: 1.0625rem;
    opacity: 0.9;
    max-width: 500px;
    margin-bottom: 1.5rem;
}

.info-cta-features {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.info-cta-feature {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
}

.info-cta-feature svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
}

.info-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

@media (max-width: 992px) {
    .info-block,
    .info-block-reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .info-block-reverse .info-block-content,
    .info-block-reverse .info-block-visual {
        order: unset;
    }
    .info-cta-block {
        flex-direction: column;
        text-align: center;
    }
    .info-cta-features {
        align-items: center;
    }
    .info-cta-actions {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .info-nav {
        gap: 0.5rem;
    }
    .info-nav-item {
        padding: 1rem;
        min-width: 90px;
    }
    .info-features {
        grid-template-columns: 1fr;
    }
    .info-block-content h2 {
        font-size: 1.75rem;
    }
    .info-cta-actions {
        flex-direction: column;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .step-card {
        flex-direction: column;
        gap: 1rem;
    }
    .external-cards {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 768px) {
    .nav-links, .nav-cta .nav-phone {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    .stat-divider {
        width: 40px;
        height: 1px;
    }
    .trust-items {
        gap: 1.5rem;
    }
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    .showcase-3d {
        height: 200px;
    }
    .viewer-tabs {
        flex-wrap: wrap;
    }
    .chatbot-window-v2 {
        width: calc(100vw - 32px);
        right: -8px;
        height: 70vh;
        max-height: 500px;
    }
    .ba-slider-handle {
        width: 40px;
        height: 40px;
    }
    .ba-slider-handle svg {
        width: 16px;
        height: 16px;
    }
    .ba-label {
        font-size: 0.6875rem;
        padding: 0.375rem 0.75rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .footer-badges {
        flex-wrap: wrap;
        justify-content: center;
    }
    .chatbot-window {
        width: calc(100vw - 48px);
        right: -12px;
        max-height: 70vh;
    }
    .cta-actions {
        flex-direction: column;
    }
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ORAL HEALTH GUIDE STYLES
   ============================================ */

.oral-health-guide {
    background: linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%);
}

.oral-guide-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.guide-tab {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: inherit;
    color: var(--charcoal);
    background: var(--white);
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.guide-tab:hover {
    border-color: var(--plum);
}

.guide-tab.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
}

.oral-guide-content {
    position: relative;
}

.guide-panel {
    display: none;
}

.guide-panel.active {
    display: block;
}

.guide-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.guide-viewer {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.guide-3d-container {
    height: 350px;
    background: linear-gradient(180deg, #f8f7f2 0%, #fffbfe 100%);
}

.guide-3d-container canvas {
    width: 100% !important;
    height: 100% !important;
    cursor: grab;
}

.guide-3d-container canvas:active {
    cursor: grabbing;
}

.guide-viewer-controls {
    padding: 0.875rem 1.25rem;
    background: var(--ivory);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.drag-hint {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--charcoal);
    opacity: 0.6;
}

.guide-info-panel {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.guide-tooth-name {
    font-family: 'Instrument Serif', serif;
    font-size: 2rem;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
}

.guide-tooth-location {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--plum);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.guide-facts {
    margin-bottom: 1.5rem;
}

.guide-facts h4,
.guide-care h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}

.guide-facts ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guide-facts li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.9375rem;
    color: var(--charcoal);
    opacity: 0.8;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.guide-facts li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    background: var(--plum);
    border-radius: 50%;
}

.guide-care p {
    font-size: 0.9375rem;
    color: var(--charcoal);
    opacity: 0.8;
    line-height: 1.6;
}

.guide-selector {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.guide-tooth-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--white);
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
}

.guide-tooth-btn:hover {
    border-color: var(--plum);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.guide-tooth-btn.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--white);
}

.guide-tooth-btn .tooth-icon {
    width: 32px;
    height: 32px;
}

.guide-tooth-btn .tooth-icon svg {
    width: 100%;
    height: 100%;
}

.guide-tooth-btn span:last-child {
    font-size: 0.75rem;
    font-weight: 600;
}

@media (max-width: 992px) {
    .guide-main {
        grid-template-columns: 1fr;
    }
    
    .guide-3d-container {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .oral-guide-tabs {
        flex-wrap: wrap;
    }
    
    .guide-tab {
        flex: 1;
        min-width: 120px;
        text-align: center;
    }
    
    .guide-selector {
        gap: 0.75rem;
    }
    
    .guide-tooth-btn {
        padding: 0.75rem 1rem;
        min-width: 80px;
    }
}

/* ============================================
   TEAM PAGE STYLES
   ============================================ */

.team-header {
    position: relative;
    overflow: hidden;
}

.header-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.header-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.header-circle-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -100px;
}

.header-circle-2 {
    width: 250px;
    height: 250px;
    bottom: -80px;
    left: 10%;
}

.header-circle-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    left: 5%;
}

/* Team Section */
.team-section {
    background: linear-gradient(180deg, var(--cream) 0%, #f8f7f2 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Team Card */
.team-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    position: relative;
}

.team-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(3, 26, 107, 0.15);
    border-color: transparent;
}

.team-card-featured {
    border: 2px solid transparent;
    background: linear-gradient(var(--white), var(--white)) padding-box,
                linear-gradient(135deg, var(--navy), var(--plum)) border-box;
}

.team-card-featured::before {
    content: 'Practice Owner';
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.375rem 0.75rem;
    border-radius: 100px;
    z-index: 5;
}

/* Team Card Image */
.team-card-image {
    position: relative;
    padding: 2rem 2rem 0;
    display: flex;
    justify-content: center;
}

.team-card-image-wrapper {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--ivory);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.4s ease;
}

.team-card:hover .team-card-image-wrapper {
    border-color: var(--plum);
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(122, 59, 105, 0.2);
}

.team-card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    transition: transform 0.5s ease;
}

.team-card:hover .team-card-image-wrapper img {
    transform: scale(1.08);
}

.team-card-badge {
    position: absolute;
    bottom: 0.5rem;
    right: 1.5rem;
    background: var(--success);
    color: var(--white);
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 0.375rem 0.75rem;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.team-card-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Team Card Content */
.team-card-content {
    padding: 1.5rem 2rem 2rem;
    text-align: center;
}

.team-card-header {
    margin-bottom: 1rem;
}

.team-card-name {
    font-family: 'Instrument Serif', serif;
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 0.375rem;
    transition: color 0.3s ease;
}

.team-card:hover .team-card-name {
    color: var(--navy);
}

.team-card-role {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--plum);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.team-card-bio {
    font-size: 0.9375rem;
    color: var(--charcoal);
    opacity: 0.75;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

/* Specialty Tags */
.team-card-specialties {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.specialty-tag {
    background: linear-gradient(135deg, rgba(3, 26, 107, 0.08) 0%, rgba(122, 59, 105, 0.08) 100%);
    color: var(--navy);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.375rem 0.875rem;
    border-radius: 100px;
    transition: all 0.3s ease;
}

.team-card:hover .specialty-tag {
    background: linear-gradient(135deg, rgba(3, 26, 107, 0.12) 0%, rgba(122, 59, 105, 0.12) 100%);
}

.specialty-more {
    font-size: 0.75rem;
    color: var(--plum);
    font-weight: 600;
}

/* Team Card Button */
.team-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: 100%;
}

.team-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(3, 26, 107, 0.35);
}

.team-card-btn svg {
    transition: transform 0.3s ease;
}

.team-card-btn:hover svg {
    transform: translateX(4px);
}

/* Support Staff Section */
.support-section {
    background: var(--ivory);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.support-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}

.support-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.support-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(3, 26, 107, 0.08) 0%, rgba(122, 59, 105, 0.08) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--navy);
    transition: all 0.4s ease;
}

.support-card:hover .support-card-icon {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.1) rotate(-5deg);
}

.support-card-icon svg {
    width: 26px;
    height: 26px;
}

.support-card-content h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
}

.support-card-role {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--plum);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.support-card-content p {
    font-size: 0.9375rem;
    color: var(--charcoal);
    opacity: 0.75;
    line-height: 1.6;
    margin: 0;
}

/* Team Modal */
.team-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.team-modal.active {
    opacity: 1;
    visibility: visible;
}

.team-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.team-modal-content {
    position: relative;
    background: var(--white);
    border-radius: 28px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.3);
}

.team-modal-content::-webkit-scrollbar {
    width: 6px;
}

.team-modal-content::-webkit-scrollbar-track {
    background: transparent;
}

.team-modal-content::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 3px;
}

.team-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    transition: all 0.3s ease;
    z-index: 5;
}

.team-modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

/* Modal Profile Header */
.modal-profile {
    padding: 2.5rem 2.5rem 2rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(3, 26, 107, 0.03) 0%, transparent 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.modal-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
}

.modal-header h2 {
    font-family: 'Instrument Serif', serif;
    font-size: 1.75rem;
    color: var(--charcoal);
    margin-bottom: 0.375rem;
}

.modal-role {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--plum);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.modal-accepting {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(5, 150, 105, 0.1);
    color: var(--success);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 100px;
}

/* Modal Body */
.modal-body {
    padding: 2rem 2.5rem;
}

.modal-section {
    margin-bottom: 2rem;
}

.modal-section:last-child {
    margin-bottom: 0;
}

.modal-section h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(3, 26, 107, 0.1);
}

.modal-section p {
    font-size: 0.9375rem;
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.modal-section p:last-child {
    margin-bottom: 0;
}

.modal-qualifications {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-qualifications li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--ivory);
    border-radius: 10px;
}

.modal-qualifications li svg {
    flex-shrink: 0;
    color: var(--success);
    margin-top: 2px;
}

.modal-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
}

.modal-specialty-tag {
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.625rem 1.25rem;
    border-radius: 100px;
}

.modal-patient-info {
    background: linear-gradient(135deg, rgba(201, 169, 89, 0.1) 0%, rgba(201, 169, 89, 0.05) 100%);
    border-radius: 16px;
    padding: 1.5rem;
    border-left: 4px solid var(--gold);
}

.modal-patient-info h4 {
    border: none;
    padding-bottom: 0;
    color: var(--charcoal);
}

.modal-patient-info p {
    margin: 0;
}

/* Modal Actions */
.modal-actions {
    padding: 1.5rem 2.5rem 2.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* Team Error State */
.team-error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.team-error p {
    color: var(--charcoal);
    opacity: 0.7;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
    
    .team-card-image-wrapper {
        width: 150px;
        height: 150px;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .team-modal-content {
        border-radius: 20px;
    }
    
    .modal-profile,
    .modal-body,
    .modal-actions {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .modal-image {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .team-card-content {
        padding: 1.25rem 1.5rem 1.5rem;
    }
    
    .team-card-image {
        padding: 1.5rem 1.5rem 0;
    }
    
    .specialty-tag {
        font-size: 0.6875rem;
        padding: 0.3rem 0.625rem;
    }
}

/* Implant Showcase */
.implant-offer-card .offer-visual {
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.implant-showcase {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.implant-image-container {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.implant-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: all 0.5s var(--ease-out-expo);
    pointer-events: none;
}

.implant-img.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}

.implant-controls {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 5;
}

.implant-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.implant-dot:hover {
    background: rgba(0, 0, 0, 0.2);
}

.implant-dot.active {
    background: var(--navy);
    transform: scale(1.3);
}

.implant-info-container {
    position: relative;
    min-height: 140px;
    margin-bottom: 1.5rem;
}

.implant-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.implant-info.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.implant-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.implant-info p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--charcoal);
}

.info-badge {
    display: inline-flex;
    padding: 0.5rem 1rem;
    background: rgba(3, 26, 107, 0.05);
    color: var(--navy);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.info-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin: 2rem 0;
}

.info-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-feature-icon {
    width: 32px;
    height: 32px;
    background: rgba(122, 59, 105, 0.1);
    color: var(--plum);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-feature-icon svg {
    width: 16px;
    height: 16px;
}

.info-feature-item span {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--charcoal);
}

.info-note-box {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(3, 26, 107, 0.03);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--navy);
}

.badge-urgent {
    background: rgba(183, 28, 28, 0.05);
    color: #b71c1c;
}

.emergency-contact-box {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

.emergency-contact-icon {
    width: 48px;
    height: 48px;
    background: var(--navy);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.emergency-contact-icon svg {
    width: 24px;
    height: 24px;
}

.emergency-contact-info span {
    display: block;
    font-size: 0.8125rem;
    color: var(--charcoal);
    opacity: 0.7;
    margin-bottom: 0.25rem;
}

.emergency-contact-info a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
}

.info-alert-card {
    background: #fff9c4;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-left: 4px solid #fbc02d;
}

.alert-icon {
    width: 24px;
    height: 24px;
    background: #fbc02d;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.alert-content h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: #574300;
}

.alert-content p {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #574300;
    margin: 0;
}

.icon-urgent {
    background: rgba(183, 28, 28, 0.1);
    color: #b71c1c;
}

.emergency-dot {
    width: 8px;
    height: 8px;
    background: #b71c1c;
    border-radius: 50%;
    flex-shrink: 0;
}

.info-emergency-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
}

.info-emergency-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 0.9375rem;
    font-weight: 500;
}

.info-emergency-list li:last-child {
    border-bottom: none;
}
.verified-review {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.verified-badge {
    flex-shrink: 0;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 99;
    box-shadow: 0 4px 20px rgba(3, 26, 107, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--plum);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(122, 59, 105, 0.4);
}

@media (max-width: 768px) {
    /* Layout & Spacing */
    .section {
        padding: 4rem 0;
    }

    .container {
        padding: 0 1.5rem;
    }

    /* Navigation */
    .nav-phone {
        display: none !important;
    }

    .nav-cta .btn-outline {
        display: none;
    }

    .nav-cta .btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .logo-icon {
        width: 120px !important;
        height: 120px !important;
    }

    .logo-icon .logo-img {
        width: 120px !important;
        height: 120px !important;
    }

    /* Hero Sections */
    .hero {
        padding: 100px 0 4rem;
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.75rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 2rem;
        background: rgba(255, 255, 255, 0.5);
        border-radius: 20px;
        backdrop-filter: blur(10px);
        margin-top: 3rem;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .hero-3d {
        max-width: 320px;
        margin: 0 auto;
        height: 350px;
    }

    .floating-card {
        display: none; /* Too cluttered on mobile */
    }

    .scroll-indicator {
        display: none;
    }

    .trust-banner {
        padding: 2rem 0;
    }

    .trust-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .page-hero {
        padding: 6rem 0 4rem;
        text-align: center;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    /* About & Content Grids */
    .about-grid, 
    .content-grid,
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .content-grid.reverse > div:first-child {
        order: 1;
    }

    .content-grid.reverse > div:last-child {
        order: 2;
    }

    .about-experience {
        position: relative;
        top: auto;
        left: auto;
        margin: -2rem auto 2rem;
        max-width: 150px;
    }

    .about-image-stack {
        height: 350px;
        max-width: 400px;
        margin: 0 auto;
    }

    /* Offers Carousel */
    .offers-carousel {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .offer-visual {
        height: 280px;
    }

    /* Pricing & Info */
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .price-table {
        padding: 1.5rem;
    }

    .pricing-name,
    .pricing-cost {
        font-size: 0.875rem;
    }

    .info-nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .info-nav-item {
        padding: 1.5rem 1rem;
    }

    .info-block {
        flex-direction: column !important;
        gap: 3rem;
    }

    .info-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .emergency-contact-box {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .emergency-contact-info a {
        font-size: 1.25rem;
    }

    .info-block-visual {
        width: 100%;
    }

    .info-visual-card {
        padding: 2rem 1.5rem;
    }

    .service-model-viewer {
        height: 280px;
    }

    .implant-offer-card .offer-visual {
        height: 320px !important;
    }

    /* Sticky compact header styles */
    .nav.scrolled .nav-inner {
        padding: 0.25rem 0;
    }
    
    .nav.scrolled .logo-icon {
        width: 100px !important;
        height: 100px !important;
    }

    .nav.scrolled .logo-icon .logo-img {
        width: 100px !important;
        height: 100px !important;
    }

    /* 3D Model Mobile Message */
    .hero-3d::after,
    .offer-3d::after,
    .showcase-3d::after,
    .service-model-viewer::after,
    .bento-3d-icon::after,
    .logo-tooth-container::after {
        content: 'To view a model, visit on a desktop computer';
        display: none;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        font-size: 0.75rem;
        color: var(--charcoal);
        opacity: 0.6;
        width: 80%;
        font-style: italic;
    }

    .hero-3d,
    .offer-3d,
    .showcase-3d,
    .service-model-viewer,
    .bento-3d-icon,
    .logo-tooth-container {
        display: flex !important;
        align-items: center;
        justify-content: center;
        text-align: center;
        min-height: 180px;
        background: rgba(3, 26, 107, 0.03) !important;
        border-radius: 20px;
        padding: 2rem;
        width: 100%;
        position: relative;
    }

    .hero-3d:after,
    .offer-3d:after,
    .showcase-3d:after,
    .service-model-viewer:after,
    .bento-3d-icon:after,
    .logo-tooth-container:after {
        content: "To view a model, visit on a desktop computor";
        display: block;
        font-size: 0.8125rem;
        color: var(--navy);
        opacity: 0.6;
        font-weight: 600;
        max-width: 200px;
        line-height: 1.4;
    }

    /* Hide the actual model components on mobile */
    .hero-3d-canvas, 
    .model-container,
    .ba-container,
    canvas {
        display: none !important;
    }

    /* Footer */
    .footer-brand {
        align-items: center;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-badges {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-badge:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.footer-badge svg {
    opacity: 0.8;
}

/* Back to Top Button */
    .back-to-top {
        bottom: 1.5rem;
        left: 1.5rem;
        width: 44px;
        height: 44px;
    }

    /* Mobile Menu refinements */
    .mobile-menu {
        background: linear-gradient(135deg, var(--cream) 0%, var(--ivory) 100%);
    }

    .mobile-menu li {
        margin: 1rem 0;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }

    .mobile-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .mobile-menu.active li:nth-child(2) { transition-delay: 0.2s; }
    .mobile-menu.active li:nth-child(3) { transition-delay: 0.3s; }
    .mobile-menu.active li:nth-child(4) { transition-delay: 0.4s; }
    .mobile-menu.active li:nth-child(5) { transition-delay: 0.5s; }
    .mobile-menu.active li:nth-child(6) { transition-delay: 0.6s; }

    /* Chatbot Mobile */
    .chatbot-v2 {
        bottom: 1rem;
        right: 1rem;
    }

    .chatbot-window-v2 {
        width: calc(100vw - 2rem);
        height: calc(100vh - 100px);
        bottom: 70px;
        right: 0;
        max-height: 600px;
    }

    .chatbot-toggle-v2 {
        width: 52px;
        height: 52px;
    }

    .zoho-card-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .cookie-actions {
        width: 100%;
        display: flex;
        gap: 0.75rem;
    }

    .cookie-actions .btn {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.25rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .trust-items {
        grid-template-columns: 1fr;
    }

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

    .info-nav {
        grid-template-columns: 1fr;
    }

    .info-price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .info-price-row span:last-child {
        font-weight: 700;
        color: var(--navy);
    }

    .pricing-item {
        gap: 0.25rem;
    }

    .pricing-dots {
        display: none;
    }
}

/* Selection styling */
::-webkit-scrollbar {
    width: 0;
    height: 0;
}

body {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

::selection {
    background: var(--plum);
    color: var(--white);
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--navy);
    outline-offset: 2px;
}

/* Improved image protection */
img {
    -webkit-user-drag: none;
    user-select: none;
}

/* ========================================
   ANNOUNCEMENT BANNER
   ======================================== */
.announcement-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    padding: 0.875rem 1.5rem;
    text-align: center;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.announcement-banner.visible {
    transform: translateY(0);
}

.announcement-banner.banner-info {
    background: linear-gradient(135deg, rgba(3, 26, 107, 0.95) 0%, rgba(122, 59, 105, 0.95) 100%);
    color: var(--white);
}

.announcement-banner.banner-warning {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.95) 0%, rgba(217, 119, 6, 0.95) 100%);
    color: var(--charcoal);
}

.announcement-banner.banner-alert {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.95) 0%, rgba(185, 28, 28, 0.95) 100%);
    color: var(--white);
}

.announcement-banner.banner-success {
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.95) 0%, rgba(21, 128, 61, 0.95) 100%);
    color: var(--white);
}

.announcement-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.announcement-banner-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.announcement-banner-icon svg {
    width: 100%;
    height: 100%;
}

.announcement-banner-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.announcement-banner-title {
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

.announcement-banner-message {
    font-size: 0.9rem;
    opacity: 0.95;
}

.announcement-banner-link {
    color: inherit;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: opacity 0.2s ease;
}

.announcement-banner-link:hover {
    opacity: 0.8;
}

.announcement-banner-close {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: inherit;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

.announcement-banner-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.announcement-banner-close svg {
    width: 14px;
    height: 14px;
}

/* Adjust body padding when banner is visible */
body.has-banner {
    padding-top: 52px;
}

body.has-banner .nav {
    top: 52px;
}

body.has-banner .page-loader {
    top: 52px;
}

@media (max-width: 768px) {
    .announcement-banner {
        padding: 0.75rem 3rem 0.75rem 1rem;
    }
    
    .announcement-banner-inner {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .announcement-banner-icon {
        display: none;
    }
    
    .announcement-banner-title {
        font-size: 0.8rem;
    }
    
    .announcement-banner-message {
        font-size: 0.8rem;
    }
    
    body.has-banner {
        padding-top: 70px;
    }
    
    body.has-banner .nav {
        top: 70px;
    }
}
