:root {
    --white: #ffffff;
    --red: #F43131;
    --burgundy: #6C191D;
    --ink: #1f1f1f;
    --muted: #666666;
    --soft: #fff4f4;
    --soft-red: #ffe7e7;
    --line: rgba(108, 25, 29, 0.12);
    --shadow: 0 18px 45px rgba(108, 25, 29, 0.16);
    --shadow-hover: 0 24px 55px rgba(108, 25, 29, 0.22);
}

@supports (color: color-mix(in srgb, white, black)) {
    :root {
        --line: color-mix(in srgb, var(--burgundy) 14%, transparent);
    }
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 86px;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: linear-gradient(180deg, var(--white), #fffafa 45%, var(--white));
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: rgba(244, 49, 49, 0.22);
    color: var(--burgundy);
}

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

a {
    color: inherit;
    text-decoration: none;
}

:focus-visible {
    outline: 3px solid rgba(244, 49, 49, 0.36);
    outline-offset: 3px;
}

.container {
    width: min(1140px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(108, 25, 29, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.985);
    box-shadow: 0 12px 30px rgba(108, 25, 29, 0.1);
}

.navbar {
    width: min(1200px, calc(100% - 40px));
    min-height: 112px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand img {
    width: 285px;
    max-height: 90px;
    height: auto;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.brand:hover img {
    transform: scale(1.015);
}

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

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-links a,
.dropdown-toggle {
    display: inline-flex;
    padding: 10px 14px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--burgundy);
    font: inherit;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active,
.dropdown-toggle:hover,
.has-dropdown.open > .dropdown-toggle {
    background: var(--red);
    color: var(--white);
}

.nav-links a:hover,
.dropdown-toggle:hover {
    transform: translateY(-1px);
}

.dropdown-toggle {
    font-size: 1rem;
    line-height: 1;
}

.has-dropdown:not(.language-item) > .dropdown-toggle {
    margin-left: -10px;
    padding-inline: 10px;
}

.language-item > .dropdown-toggle {
    margin-left: 0;
    padding: 10px 14px;
}

.dropdown-toggle::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid currentColor;
    transition: transform 0.2s ease;
}

.has-dropdown.open > .dropdown-toggle::after,
.has-dropdown:hover > .dropdown-toggle::after {
    transform: rotate(180deg);
}

.language-link::after {
    margin-left: 8px;
}

.has-dropdown:not(.language-item) > .dropdown-toggle::after {
    content: none;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 20;
    display: grid;
    gap: 4px;
    width: 300px;
    padding: 12px;
    margin: 0;
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

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

.dropdown-menu a {
    display: flex;
    width: 100%;
    border-radius: 12px;
    font-size: 0.9rem;
}

.language-item .dropdown-menu {
    right: 0;
    left: auto;
    width: 210px;
}

.language-link {
    border: 1px solid rgba(108, 25, 29, 0.22);
}

.menu-toggle {
    display: none;
    border: 0;
    border-radius: 12px;
    background: transparent;
    padding: 8px;
    cursor: pointer;
}

.menu-toggle:hover {
    background: var(--soft);
}

.menu-toggle span:not(.sr-only) {
    display: block;
    width: 28px;
    height: 3px;
    margin: 5px 0;
    background: var(--burgundy);
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hero,
.carousel {
    position: relative;
    min-height: 680px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
    color: var(--white);
    background: linear-gradient(110deg, rgba(108, 25, 29, 0.94), rgba(244, 49, 49, 0.76)), url('images/hero-montreal-1.jpg') center/cover;
}

.page-hero::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -160px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 62%);
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    max-width: 820px;
    margin: 0 0 18px;
    font-size: clamp(2.6rem, 6vw, 4.8rem);
    line-height: 1.04;
    letter-spacing: -0.05em;
}

.page-hero p {
    max-width: 720px;
    margin: 0;
    font-size: 1.18rem;
}

.page-hero .eyebrow {
    color: rgba(255, 255, 255, 0.84);
}

.carousel {
    overflow: hidden;
    background: var(--burgundy);
}

.carousel::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 130px;
    z-index: 1;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.26));
    pointer-events: none;
}

.carousel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('images/hero1.jpg') center/cover;
    opacity: 0.65;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.03);
    transition: opacity 0.8s ease, visibility 0.8s ease, transform 4s ease;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(108, 25, 29, 0.88), rgba(108, 25, 29, 0.48), rgba(244, 49, 49, 0.16));
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(760px, calc(100% - 40px));
    margin-left: max(20px, calc((100vw - 1140px) / 2));
    color: var(--white);
    padding: 80px 0;
}

.hero-content::before {
    content: "";
    position: absolute;
    inset: 40px -32px 40px -34px;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 34px;
    background: rgba(60, 13, 16, 0.2);
    backdrop-filter: blur(2px);
}

.eyebrow,
.section-kicker {
    margin: 0 0 12px;
    color: var(--red);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-content .eyebrow,
.hero-content h1,
.hero-content h2,
.hero-content p {
    color: var(--white);
}

.hero h1,
.hero h2 {
    margin: 0 0 22px;
    max-width: 780px;
    font-size: clamp(2.4rem, 6vw, 5rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.hero p:not(.eyebrow) {
    max-width: 650px;
    margin: 0 0 30px;
    font-size: 1.2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 12px 24px rgba(244, 49, 49, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    box-shadow: 0 16px 32px rgba(244, 49, 49, 0.38);
}

.btn-secondary {
    background: var(--white);
    color: var(--burgundy);
}

.carousel-control {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--burgundy);
    cursor: pointer;
    font-size: 1.6rem;
    transform: translateY(-50%);
    transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-control:hover,
.carousel-control:focus-visible {
    background: var(--white);
    transform: translateY(-50%) scale(1.06);
}

.carousel-control.prev {
    left: 24px;
}

.carousel-control.next {
    right: 24px;
}

.carousel-dots {
    position: absolute;
    left: 50%;
    bottom: 28px;
    z-index: 2;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.dot {
    width: 12px;
    height: 12px;
    border: 2px solid var(--white);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.dot.active {
    background: var(--red);
    border-color: var(--red);
    transform: scale(1.15);
}

.welcome-section,
.content-section,
.services-section,
.appointment-section,
.contact-section {
    padding: 88px 0;
}

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

.two-column {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 56px;
    align-items: start;
}

h2 {
    margin: 0;
    color: var(--burgundy);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.welcome-card,
.contact-card,
.cta-card {
    border-radius: 28px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.welcome-card {
    padding: 34px;
    border-left: 6px solid var(--red);
}

.welcome-card p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 1.05rem;
}

.welcome-card p:last-child {
    margin-bottom: 0;
}

.services-section {
    background: linear-gradient(180deg, var(--soft), var(--white));
}

.section-heading {
    max-width: 720px;
    margin-bottom: 34px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 170px;
    padding: 28px;
    border: 1px solid rgba(108, 25, 29, 0.1);
    border-radius: 24px;
    background: var(--white);
    box-shadow: 0 14px 30px rgba(108, 25, 29, 0.08);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--red);
}

.service-icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    width: 88px;
    height: 88px;
    margin-bottom: 24px;
    padding: 8px;
    border-radius: 50%;
    background: var(--soft);
    object-fit: contain;
}

.service-card h3 {
    margin: 0;
    color: var(--burgundy);
    font-size: 1.18rem;
    line-height: 1.35;
    text-align: center;
}

.home-services-grid .service-card .service-icon {
    width: 130px;
    height: 130px;
}

.service-detail-grid {
    display: grid;
    gap: 24px;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 24px;
    align-items: start;
    padding: 30px;
    border: 1px solid rgba(108, 25, 29, 0.1);
    border-radius: 26px;
    background: var(--white);
    box-shadow: 0 14px 30px rgba(108, 25, 29, 0.08);
}

.service-detail-card .service-icon {
    width: 104px;
    height: 104px;
    margin-bottom: 0;
}

.services-page-grid .service-detail-card {
    grid-template-columns: 170px 1fr;
}

.services-page-grid .service-detail-card .service-icon {
    width: 150px;
    height: 150px;
}

.service-detail-card h2 {
    margin-bottom: 10px;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.service-detail-card p,
.content-card p,
.contact-list p {
    margin: 0;
    color: var(--muted);
}

.content-card {
    padding: 38px;
    border-radius: 28px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.content-card .service-icon {
    width: 220px;
    height: auto;
    margin-bottom: 24px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    filter: drop-shadow(0 14px 18px rgba(108, 25, 29, 0.22));
}

.about-content p + p,
.about-content h3 {
    margin-top: 18px;
}

.about-content h3 {
    margin-bottom: 8px;
    color: var(--burgundy);
    font-size: 1.45rem;
}

.about-content strong {
    color: var(--burgundy);
}

.contact-list {
    display: grid;
    gap: 18px;
    margin-top: 26px;
}

.contact-list strong {
    display: block;
    color: var(--burgundy);
}

.text-link {
    display: inline-flex;
    margin-top: 16px;
    color: var(--red);
    font-weight: 800;
}

.text-link:hover {
    color: var(--burgundy);
}

.section-text {
    margin: 18px 0 0;
    color: var(--muted);
}

.appointment-form h3 {
    margin: 0 0 22px;
    color: var(--burgundy);
    font-size: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 26px;
}

.appointment-form label,
.contact-form label {
    display: block;
    color: var(--burgundy);
    font-weight: 800;
}

.appointment-form label span {
    display: inline;
    margin-left: 2px;
    color: var(--red);
}

.appointment-form input,
.contact-form input,
.contact-form textarea {
    width: 100%;
    min-height: 48px;
    margin-top: 7px;
    padding: 12px 14px;
    border: 1px solid rgba(108, 25, 29, 0.18);
    border-radius: 14px;
    color: var(--ink);
    font: inherit;
    font-weight: 400;
    background: var(--white);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.full-field {
    margin-bottom: 26px;
}

.form-status {
    display: none !important;
    margin: 0 0 22px;
    padding: 12px 14px;
    border-radius: 14px;
    font-weight: 700;
}

body.form-success .form-status-success,
body.form-error .form-status-error {
    display: block !important;
}

.form-status-success {
    color: #24592b;
    background: #edf8ef;
    border: 1px solid rgba(36, 89, 43, 0.2);
}

.form-status-error {
    color: var(--burgundy);
    background: var(--soft-red);
    border: 1px solid rgba(108, 25, 29, 0.16);
}

.appointment-form input:focus,
.contact-form input:focus,
.contact-form textarea:focus {
    outline: 3px solid rgba(244, 49, 49, 0.18);
    border-color: var(--red);
}

.appointment-section {
    background: var(--burgundy);
}

.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 44px;
}

.cta-card h2 {
    margin-bottom: 12px;
}

.cta-card p:last-child {
    margin: 0;
    color: var(--muted);
}

.contact-card {
    padding: 46px;
    text-align: center;
    background: linear-gradient(135deg, var(--white), var(--soft));
}

.contact-card h2 {
    margin-bottom: 18px;
}

address {
    color: var(--burgundy);
    font-style: normal;
    font-weight: 800;
    font-size: 1.1rem;
}

.contact-card-details {
    display: grid;
    gap: 10px;
    color: var(--burgundy);
    font-size: 1.05rem;
}

.contact-card-details p {
    margin: 0;
}

.contact-card-details a {
    font-weight: 800;
}

.site-footer {
    padding: 38px 0;
    background: var(--burgundy);
    color: var(--white);
    text-align: center;
}

.footer-content {
    display: grid;
    justify-items: center;
    gap: 12px;
}

.footer-content img {
    width: 150px;
    padding: 8px;
    border-radius: 12px;
    background: var(--white);
}

.footer-content p {
    margin: 0;
}

@media (max-width: 900px) {
    body {
        overflow-x: hidden;
    }

    .site-header {
        position: sticky;
    }

    .navbar {
        min-height: 96px;
        gap: 14px;
    }

    .menu-toggle {
        display: block;
        flex: 0 0 auto;
    }

    .nav-links {
        position: absolute;
        top: 96px;
        right: 14px;
        left: 14px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        max-height: calc(100vh - 96px);
        overflow-y: auto;
        padding: 18px;
        border-radius: 18px;
        background: var(--white);
        box-shadow: var(--shadow);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    }

    .nav-links.open {
        display: flex;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-links a,
    .language-link {
        justify-content: center;
        width: 100%;
        min-height: 46px;
    }

    .nav-item {
        display: grid;
    }

    .dropdown-toggle {
        justify-content: center;
        margin-left: 0;
        width: 100%;
        min-height: 42px;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        margin-top: 8px;
        box-shadow: none;
        background: var(--soft);
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .language-item .dropdown-menu {
        display: grid;
        max-height: 0;
        padding-top: 0;
        padding-bottom: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s ease, max-height 0.2s ease, padding 0.2s ease, visibility 0.2s ease;
    }

    .language-item.open .dropdown-menu {
        max-height: 220px;
        padding-top: 12px;
        padding-bottom: 12px;
        opacity: 1;
        visibility: visible;
    }

    .hero,
    .carousel {
        min-height: 560px;
    }

    .hero-content {
        padding: 64px 0 92px;
    }

    .hero-content::before {
        inset: 28px -18px 58px -18px;
        border-radius: 26px;
    }

    .hero h1,
    .hero h2 {
        font-size: clamp(2.1rem, 8vw, 3.5rem);
    }

    .hero p:not(.eyebrow) {
        font-size: 1.05rem;
    }

    .page-hero {
        padding: 82px 0;
        background-position: center;
    }

    .page-hero h1 {
        font-size: clamp(2.2rem, 8vw, 3.6rem);
    }

    .carousel-control {
        display: none;
    }

    .two-column,
    .services-grid,
    .service-detail-card,
    .form-grid,
    .cta-card {
        grid-template-columns: 1fr;
    }

    .cta-card {
        align-items: flex-start;
        display: grid;
    }

    .services-grid {
        display: grid;
    }
}

@media (max-width: 640px) {
    html {
        scroll-padding-top: 72px;
    }

    .navbar,
    .container {
        width: min(100% - 28px, 1140px);
    }

    .navbar {
        min-height: 88px;
    }

    .brand img {
        width: 220px;
        max-height: 72px;
    }

    .nav-links {
        top: 88px;
        right: 10px;
        left: 10px;
        padding: 14px;
    }

    .hero,
    .carousel {
        min-height: 540px;
    }

    .hero-content {
        width: calc(100% - 28px);
        margin-left: 14px;
        padding: 54px 0 82px;
    }

    .hero h1,
    .hero h2 {
        margin-bottom: 16px;
        letter-spacing: -0.035em;
    }

    .hero p:not(.eyebrow) {
        margin-bottom: 22px;
    }

    .hero-actions,
    .cta-card .btn {
        width: 100%;
    }

    .btn {
        width: 100%;
        min-height: 50px;
        padding: 13px 18px;
        text-align: center;
    }

    .carousel-dots {
        bottom: 20px;
    }

    .page-hero {
        padding: 66px 0;
    }

    .page-hero p {
        font-size: 1rem;
    }

    .welcome-section,
    .content-section,
    .services-section,
    .appointment-section,
    .contact-section {
        padding: 62px 0;
    }

    .welcome-card,
    .contact-card,
    .cta-card,
    .content-card,
    .service-detail-card {
        padding: 26px;
        border-radius: 22px;
    }

    .two-column {
        gap: 24px;
    }

    .section-heading {
        margin-bottom: 24px;
    }

    .services-grid {
        gap: 16px;
    }

    .service-card {
        min-height: auto;
        padding: 22px;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .service-card h3 {
        font-size: 1.04rem;
    }

    .service-icon {
        width: 72px;
        height: 72px;
        margin-bottom: 16px;
    }

    .service-card .service-icon {
        margin-bottom: 0;
    }

    .home-services-grid .service-card .service-icon {
        width: 100px;
        height: 100px;
    }

    .service-detail-card {
        gap: 14px;
    }

    .service-detail-card .service-icon {
        width: 84px;
        height: 84px;
    }

    .services-page-grid .service-detail-card .service-icon {
        width: 120px;
        height: 120px;
    }

    .content-card .service-icon {
        width: 180px;
        height: auto;
    }

    address {
        font-size: 1rem;
        overflow-wrap: anywhere;
    }

    .footer-content img {
        width: 128px;
    }

    .footer-content p {
        font-size: 0.92rem;
    }
}

@media (max-width: 380px) {
    .container,
    .navbar {
        width: min(100% - 20px, 1140px);
    }

    .brand img {
        width: 190px;
    }

    .hero-content::before {
        inset: 22px -10px 56px -10px;
    }

    .hero,
    .carousel {
        min-height: 500px;
    }

    .hero-content {
        width: calc(100% - 20px);
        margin-left: 10px;
    }

    .welcome-card,
    .contact-card,
    .cta-card,
    .content-card,
    .service-detail-card {
        padding: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .reveal-on-scroll {
        opacity: 1;
        transform: none;
    }
}

@media print {
    .site-header,
    .site-footer,
    .carousel-control,
    .carousel-dots,
    .hero-actions,
    .appointment-form,
    .contact-form {
        display: none !important;
    }

    body {
        background: var(--white);
        color: #000;
    }

    .page-hero,
    .hero,
    .carousel,
    .content-section,
    .welcome-section,
    .services-section,
    .appointment-section,
    .contact-section {
        min-height: 0;
        padding: 24px 0;
        color: #000;
        background: none !important;
    }

    .content-card,
    .welcome-card,
    .service-card,
    .service-detail-card,
    .contact-card,
    .cta-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}
