﻿:root {
    --bg: #f7edf3;
    --bg-soft: #fdf6fa;
    --paper: rgba(255, 249, 252, 0.88);
    --panel: rgba(255, 245, 250, 0.84);
    --line: rgba(124, 28, 82, 0.12);
    --text: #4e1533;
    --muted: #7e4a65;
    --sea: #c44787;
    --sea-deep: #8f1457;
    --sand: #f2b6d7;
    --accent: #d96aa3;
    --gold: #e6a1c7;
    --blue-soft: #b45491;
    --rose-soft: #f4c8df;
    --strong-sea: #690738;
    --strong-sand: #d25591;
    --strong-cream: #fff5fa;
    --shadow-lg: 0 24px 60px rgba(97, 10, 53, 0.14);
    --shadow-sm: 0 16px 40px rgba(97, 10, 53, 0.09);
    --shadow-hover: 0 28px 70px rgba(97, 10, 53, 0.2);
    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(196, 71, 135, 0.26), transparent 22%),
        radial-gradient(circle at 90% 10%, rgba(242, 182, 215, 0.32), transparent 20%),
        radial-gradient(circle at 15% 85%, rgba(143, 20, 87, 0.12), transparent 22%),
        linear-gradient(180deg, #fff8fb 0%, #f4e2ec 100%);
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}

.admin-body {
    min-height: 100vh;
}

.admin-shell {
    width: min(calc(100% - 32px), 520px);
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 0;
}

.admin-panel-shell {
    width: min(calc(100% - 32px), 1100px);
}

.admin-auth-card,
.admin-panel-card {
    width: 100%;
    padding: 36px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(16px);
}

.admin-kicker {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(196, 71, 135, 0.14);
    color: var(--strong-sea);
    font-weight: 700;
}

.admin-auth-card h1,
.admin-panel-card h1 {
    margin: 0 0 10px;
    font-size: clamp(2rem, 3vw, 2.8rem);
}

.admin-form {
    display: grid;
    gap: 18px;
    margin-top: 28px;
}

.admin-form label {
    display: grid;
    gap: 8px;
}

.admin-form span {
    font-weight: 700;
    color: var(--text);
}

.admin-form input {
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(124, 28, 82, 0.16);
    background: rgba(255, 255, 255, 0.9);
    color: var(--text);
    font: inherit;
}

.admin-form input:focus {
    outline: 2px solid rgba(124, 28, 82, 0.2);
    border-color: var(--sea-deep);
}

.admin-checkbox-label {
    display: block;
}

.admin-checkbox-row {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.4;
}

.admin-checkbox-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    padding: 0;
    border-radius: 6px;
    accent-color: var(--sea-deep);
    flex: 0 0 auto;
}

.admin-panel-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.admin-panel-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.admin-module-card {
    display: grid;
    gap: 10px;
    padding: 24px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(124, 28, 82, 0.12);
}

.admin-module-card h2 {
    margin: 0;
    font-size: 1.5rem;
}

.admin-module-card .button[disabled] {
    cursor: not-allowed;
    opacity: 0.72;
    box-shadow: none;
}

.admin-action-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.admin-action-group form {
    margin: 0;
}

.admin-data-block {
    margin-top: 28px;
    padding: 24px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.54);
    border: 1px solid rgba(124, 28, 82, 0.12);
}

.admin-data-head {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.admin-data-head h2 {
    margin: 0;
    font-size: 1.45rem;
}

.admin-empty-state {
    padding: 18px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.64);
    border: 1px dashed rgba(124, 28, 82, 0.18);
}

.admin-table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
}

.admin-table th,
.admin-table td {
    padding: 14px 12px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid rgba(124, 28, 82, 0.12);
}

.admin-table th {
    font-family: "Palatino Linotype", Georgia, serif;
    color: var(--text);
    font-size: 1rem;
    letter-spacing: 0.04em;
}

body::before,
body::after {
    content: "";
    position: fixed;
    z-index: -1;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    animation: drift 16s ease-in-out infinite;
}

body::before {
    width: 280px;
    height: 280px;
    top: 120px;
    right: -80px;
    background: rgba(196, 71, 135, 0.22);
}

body::after {
    width: 220px;
    height: 220px;
    bottom: 80px;
    left: -70px;
    background: rgba(242, 182, 215, 0.22);
    animation-delay: -6s;
}

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

h1,
h2,
h3,
strong {
    font-family: "Palatino Linotype", Georgia, serif;
}

p {
    margin: 0;
    line-height: 1.7;
    color: var(--muted);
}

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

.site-shell {
    position: relative;
    overflow: hidden;
}

.site-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 35%, transparent 70%, rgba(0, 0, 0, 0.12));
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 246, 251, 0.86);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(124, 28, 82, 0.1);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand-logo {
    display: block;
    width: clamp(200px, 24vw, 320px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 24px rgba(105, 7, 56, 0.16));
    transition: transform 0.35s ease, filter 0.35s ease;
}

.brand:hover .brand-logo {
    transform: translateY(-2px) scale(1.02);
    filter: drop-shadow(0 18px 32px rgba(105, 7, 56, 0.24));
}

.main-nav {
    display: flex;
    gap: 10px;
    padding: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(124, 28, 82, 0.08);
}

.main-nav a {
    position: relative;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 6px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--sea-deep), var(--sand));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
    background: #fff;
    color: var(--text);
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(105, 7, 56, 0.08);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: scaleX(1);
}

.nav-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    padding: 14px 24px;
    border-radius: 999px;
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.nav-cta,
.button-primary {
    background: linear-gradient(135deg, var(--strong-sea), var(--sea) 58%, var(--accent));
    color: #fff;
    box-shadow: var(--shadow-sm);
}

.button-secondary {
    background: rgba(255, 248, 252, 0.96);
    color: var(--text);
    border: 1px solid rgba(124, 28, 82, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.nav-cta::before,
.button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.38) 50%, transparent 80%);
    transform: translateX(-120%);
    transition: transform 0.55s ease;
}

.nav-cta:hover,
.button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.nav-cta:hover::before,
.button:hover::before {
    transform: translateX(120%);
}

.hero,
.subhero {
    padding: 72px 0 40px;
}

.hero-grid,
.subhero-grid,
.split-panel,
.contact-layout,
.double-grid,
.process-grid {
    display: grid;
    gap: 24px;
}

.hero-grid {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
}

.subhero-grid {
    grid-template-columns: 1fr 340px;
    align-items: end;
}

.hero-copy,
.hero-showcase,
.subhero-side,
.contact-panel,
.sidebar-card,
.feature-card,
.service-card,
.review-card,
.facility-card,
.info-card,
.faq-card,
.timeline-item,
.stat-card,
.mini-card {
    border: 1px solid var(--line);
    background: var(--paper);
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-lg);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.hero-copy,
.hero-showcase,
.contact-panel {
    padding: 34px;
    border-radius: var(--radius-xl);
}

.hero-copy:hover,
.hero-showcase:hover,
.subhero-side:hover,
.contact-panel:hover,
.feature-card:hover,
.service-card:hover,
.review-card:hover,
.timeline-item:hover,
.stat-card:hover,
.mini-card:hover {
    transform: translateY(-6px) scale(1.015);
    box-shadow: var(--shadow-hover);
    border-color: rgba(45, 121, 119, 0.2);
}

.hero-home {
    min-height: 86vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-home::before,
.hero-home::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(6px);
}

.hero-home::before {
    width: 240px;
    height: 240px;
    top: 7%;
    left: -60px;
    background: radial-gradient(circle, rgba(196, 71, 135, 0.2), transparent 68%);
    animation: homeOrbFloat 12s ease-in-out infinite;
}

.hero-home::after {
    width: 300px;
    height: 300px;
    right: -90px;
    bottom: 6%;
    background: radial-gradient(circle, rgba(242, 182, 215, 0.22), transparent 70%);
    animation: homeOrbFloat 14s ease-in-out infinite reverse;
}

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

.hero-copy h1,
.subhero h1 {
    font-size: clamp(2.6rem, 5vw, 5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.02;
    margin: 10px 0 18px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(196, 71, 135, 0.14);
    color: var(--sea-deep);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    box-shadow: inset 0 0 0 1px rgba(124, 28, 82, 0.08);
}

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

.hero-stats,
.mini-grid,
.feature-grid,
.service-grid,
.facility-grid,
.faq-grid {
    display: grid;
    gap: 18px;
}

.hero-stats {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 28px;
}

.stat-card,
.mini-card {
    padding: 18px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.66);
    position: relative;
    overflow: hidden;
}

.stat-card::before,
.mini-card::before,
.feature-card::before,
.service-card::before,
.sidebar-card::before,
.info-card::before,
.faq-card::before,
.review-card::before,
.timeline-item::after {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--sea-deep), var(--sea), var(--sand));
    opacity: 0.85;
}

.service-card::before,
.info-card::before,
.faq-card::before,
.review-card::before {
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    background: linear-gradient(90deg, var(--sea-deep), var(--sea), var(--sand));
    opacity: 0.9;
}

.mini-card:nth-child(2)::before,
.feature-card:nth-child(2)::before,
.sidebar-card:nth-child(2)::before {
    background: linear-gradient(90deg, var(--strong-sea), var(--accent), var(--rose-soft));
}

.mini-card:nth-child(3)::before,
.feature-card:nth-child(3)::before,
.timeline-item:nth-child(2)::after {
    background: linear-gradient(90deg, var(--blue-soft), var(--sand), var(--sea-deep));
}

.stat-card strong {
    display: block;
    font-size: 1.8rem;
    margin-bottom: 4px;
}

.hero-showcase {
    display: grid;
    gap: 18px;
    position: relative;
    transform-style: preserve-3d;
}

.hero-showcase::after {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    right: -32px;
    top: -28px;
    background: radial-gradient(circle, rgba(242, 182, 215, 0.34), transparent 65%);
    animation: pulseGlow 6s ease-in-out infinite;
    pointer-events: none;
}

.main-panel {
    min-height: 280px;
    position: relative;
    overflow: hidden;
    padding: 32px;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.2), transparent 16%),
        radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.12), transparent 20%),
        linear-gradient(135deg, rgba(105, 7, 56, 0.98), rgba(196, 71, 135, 0.94));
    color: #fff;
    isolation: isolate;
}

.main-panel::before,
.subhero::before {
    content: "";
    position: absolute;
    inset: auto -40px -50px auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    filter: blur(2px);
}

.home-main-panel::after {
    content: "";
    position: absolute;
    inset: -20% auto auto -35%;
    width: 42%;
    height: 180%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
    transform: rotate(14deg) translateX(-120%);
    animation: heroPanelShine 7s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.home-main-panel > * {
    position: relative;
    z-index: 2;
}

.panel-tag {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    font-size: 0.84rem;
    font-weight: 700;
}

.main-panel h2 {
    margin: 18px 0 12px;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

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

.section {
    padding: 36px 0 72px;
    position: relative;
}

.band {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.08)),
        radial-gradient(circle at 10% 30%, rgba(196, 71, 135, 0.14), transparent 18%),
        radial-gradient(circle at 90% 70%, rgba(242, 182, 215, 0.2), transparent 20%);
}

.section-heading {
    margin-bottom: 26px;
    max-width: 760px;
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3.3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin: 10px 0 14px;
}

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

.feature-card,
.review-card,
.faq-card,
.timeline-item {
    padding: 28px;
    border-radius: var(--radius-lg);
}

.feature-card:nth-child(1) {
    background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(196,71,135,0.16));
}

.feature-card:nth-child(2) {
    background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(217,106,163,0.16));
}

.feature-card:nth-child(3) {
    background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(242,182,215,0.22));
}

.feature-card::before {
    display: none;
}

.card-index,
.service-number {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(137, 199, 191, 0.18);
    color: var(--sea-deep);
    font-weight: 700;
}

.split-panel {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
}

.reviews-stack {
    display: grid;
    gap: 18px;
}

.reviews-section {
    display: grid;
    gap: 28px;
}

.section-heading-centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-heading-centered .eyebrow {
    margin-bottom: 12px;
}

.reviews-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: stretch;
}

.review-card {
    position: relative;
    overflow: hidden;
    min-height: 100%;
}

.review-card::after {
    content: "“";
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 4.5rem;
    line-height: 1;
    color: rgba(86, 106, 100, 0.12);
}

.stars {
    margin-bottom: 14px;
    color: #d38d30;
    letter-spacing: 0.18em;
}

.home-hero-copy.reveal {
    transform: translateY(36px) translateX(-16px);
}

.home-hero-showcase.reveal {
    transform: translateY(42px) translateX(18px) scale(0.97);
}

.home-hero-copy.reveal.is-visible {
    animation: homeHeroReveal 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.home-hero-showcase.reveal.is-visible {
    animation: homeShowcaseReveal 1.05s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.home-main-panel {
    box-shadow: 0 28px 60px rgba(44, 71, 67, 0.2);
    animation: heroPanelFloat 6.5s ease-in-out infinite;
}

.home-stat-card,
.home-mini-card,
.home-feature-card,
.home-review-card {
    will-change: transform, box-shadow;
}

.home-stat-card.reveal.is-visible,
.home-mini-card.reveal.is-visible,
.home-feature-card.reveal.is-visible,
.home-review-card.reveal.is-visible {
    animation: homeCardRise 0.9s cubic-bezier(0.22, 0.8, 0.2, 1) both;
}

.home-stat-card.reveal-delay.is-visible,
.home-mini-card.reveal-delay.is-visible,
.home-feature-card.reveal-delay.is-visible,
.home-review-card.reveal-delay.is-visible {
    animation-delay: 0.14s;
}

.home-stat-card.reveal-delay-2.is-visible,
.home-mini-card.reveal-delay-2.is-visible,
.home-feature-card.reveal-delay-2.is-visible,
.home-review-card.reveal-delay-2.is-visible {
    animation-delay: 0.26s;
}

.home-feature-card,
.home-review-card,
.home-stat-card,
.home-mini-card {
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}

.home-feature-card:hover,
.home-review-card:hover,
.home-stat-card:hover,
.home-mini-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 46px rgba(52, 74, 69, 0.16);
}

.home-review-card::after {
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.home-review-card:hover::after {
    transform: translateY(-4px) scale(1.06);
    opacity: 0.22;
}

.subhero {
    position: relative;
    overflow: hidden;
}

.treatments-subhero {
    background: linear-gradient(180deg, rgba(196, 71, 135, 0.14), transparent);
}

.clinic-subhero {
    background: linear-gradient(180deg, rgba(215, 206, 192, 0.36), transparent);
}

.contact-subhero {
    background: linear-gradient(180deg, rgba(154, 143, 131, 0.16), transparent);
}

.subhero-side {
    padding: 24px;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.78), rgba(255,255,255,0.58)),
        linear-gradient(135deg, rgba(116,143,135,0.14), rgba(188,174,159,0.16));
}

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

.service-card {
    padding: 30px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.94), rgba(247,244,237,0.84)),
        linear-gradient(120deg, rgba(116,143,135,0.12), rgba(255,255,255,0) 60%);
}

.service-card::after {
    content: "";
    position: absolute;
    inset: auto -30px -50px auto;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(196, 71, 135, 0.18);
    transition: transform 0.45s ease, background 0.45s ease;
}

.service-card:hover::after {
    transform: scale(1.18);
    background: rgba(242, 182, 215, 0.3);
}

.service-card h2 {
    margin: 18px 0 12px;
}

.service-link {
    display: inline-block;
    margin-top: 20px;
    color: var(--sea-deep);
    font-weight: 700;
}

.timeline {
    display: grid;
    gap: 16px;
}

.timeline-item {
    position: relative;
    padding: 28px 28px 28px 68px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.95), rgba(246,243,236,0.86)),
        linear-gradient(120deg, rgba(116,143,135,0.12), rgba(255,255,255,0) 62%);
}

.timeline-item::after {
    display: none;
}

.timeline-item::before {
    content: "";
    position: absolute;
    top: 32px;
    left: 28px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--sea-deep);
    box-shadow: 0 0 0 10px rgba(196, 71, 135, 0.14);
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.timeline-item:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(124, 28, 82, 0.2);
    box-shadow: 0 30px 70px rgba(42, 53, 49, 0.18);
}

.timeline-item:hover::before {
    transform: scale(1.14);
    background: var(--strong-sea);
    box-shadow: 0 0 0 12px rgba(196, 71, 135, 0.18);
    animation: timelinePulse 1s ease-in-out infinite;
}

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

.facility-card {
    min-height: 360px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    isolation: isolate;
}

.facility-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.02) contrast(1.02);
    transition: transform 0.8s ease, filter 0.8s ease;
}

.facility-card:hover .facility-image {
    transform: scale(1.08);
    filter: saturate(1.12) contrast(1.04);
}

.photo-one {
    background:
        linear-gradient(180deg, transparent 10%, rgba(24, 36, 42, 0.82) 100%),
        linear-gradient(135deg, #f1bfd9, #b12f76);
}

.photo-two {
    background:
        linear-gradient(180deg, transparent 10%, rgba(24, 36, 42, 0.82) 100%),
        linear-gradient(135deg, #f7d7e7, #8f1457);
}

.photo-three {
    background:
        linear-gradient(180deg, transparent 10%, rgba(24, 36, 42, 0.82) 100%),
        linear-gradient(135deg, #f6cadf, #c44787);
}

.photo-four {
    background:
        linear-gradient(180deg, transparent 10%, rgba(24, 36, 42, 0.82) 100%),
        linear-gradient(135deg, #e8a7cb, #7a0e4a);
}

.photo-five {
    background:
        linear-gradient(180deg, transparent 10%, rgba(24, 36, 42, 0.82) 100%),
        linear-gradient(135deg, #f3d3e6, #a42466);
}

.facility-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 28px;
    color: #fff;
    background: linear-gradient(180deg, transparent 0%, rgba(24, 36, 42, 0.82) 100%);
    transition: padding 0.35s ease, background 0.35s ease;
}

.facility-card:hover .facility-overlay {
    padding-bottom: 36px;
    background: linear-gradient(180deg, transparent 0%, rgba(24, 36, 42, 0.9) 100%);
}

.facility-overlay p,
.main-panel p {
    color: rgba(255, 255, 255, 0.88);
}

.double-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
}

.info-list {
    display: grid;
    gap: 16px;
}

.info-card {
    padding: 24px;
    border-radius: var(--radius-lg);
    display: flex;
    gap: 16px;
    overflow: hidden;
    position: relative;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.84), rgba(255,255,255,0.66)),
        linear-gradient(120deg, rgba(116,143,135,0.14), rgba(188,174,159,0.08) 60%);
}

.info-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 12%, rgba(255,255,255,0.3) 50%, transparent 88%);
    transform: translateX(-120%);
    transition: transform 0.75s ease;
    pointer-events: none;
}

.faq-card {
    overflow: hidden;
}

.service-card:hover,
.review-card:hover {
    transform: translateY(-6px) scale(1.02);
}

.info-card,
.faq-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    transform-origin: top center;
    will-change: transform;
}

.info-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 70px rgba(42, 53, 49, 0.18);
    border-color: rgba(124, 28, 82, 0.2);
}

.info-card:hover::after {
    transform: translateX(120%);
}

.bullet-mark {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--strong-sea), var(--sea));
    margin-top: 8px;
    flex: 0 0 18px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.bullet-check::before {
    content: "+";
    display: block;
    color: #fff;
    text-align: center;
    font-size: 0.8rem;
    line-height: 18px;
}

.info-card:hover .bullet-mark {
    transform: scale(1.18);
    box-shadow: 0 0 0 8px rgba(196, 71, 135, 0.16);
}

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

.faq-grid .faq-card.reveal {
    opacity: 0;
    transform: translateY(38px);
    transition: opacity 0.85s ease, transform 0.85s ease;
}

.faq-grid .faq-card.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-layout {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
}

.legal-layout {
    display: grid;
    gap: 18px;
}

.contact-form {
    display: grid;
    gap: 18px;
    margin-top: 24px;
}

.field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form label {
    display: grid;
    gap: 8px;
}

.contact-form span {
    font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(35, 51, 61, 0.12);
    background: rgba(255, 255, 255, 0.74);
    color: var(--text);
    font: inherit;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(86, 106, 100, 0.45);
    box-shadow: 0 0 0 4px rgba(196, 71, 135, 0.16);
    transform: translateY(-1px);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form small {
    color: #a74537;
}

.consent-check {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px 12px;
    align-items: start;
}

.consent-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 4px;
}

.consent-check span {
    font-weight: 400;
}

.form-privacy-note {
    font-size: 0.95rem;
    line-height: 1.6;
}

.form-privacy-note a,
.consent-check a,
.cookie-bar-copy a {
    color: var(--sea-deep);
    font-weight: 700;
}

.contact-sidebar {
    display: grid;
    gap: 16px;
}

.sidebar-card {
    padding: 26px;
    border-radius: var(--radius-lg);
}

.text-link {
    display: inline-flex;
    margin-top: 16px;
    color: var(--sea-deep);
    font-weight: 700;
    position: relative;
}

.text-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.text-link:hover::after {
    transform: scaleX(1);
}

.map-embed {
    margin-top: 18px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(95, 120, 114, 0.16);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.7);
}

.map-embed iframe {
    display: block;
    width: 100%;
    height: 260px;
    border: 0;
    filter: saturate(0.96) contrast(1.02);
}

.alert {
    padding: 16px 18px;
    border-radius: 14px;
    margin-top: 20px;
}

.alert.success {
    background: rgba(196, 71, 135, 0.14);
    color: #445751;
    border: 1px solid rgba(86, 106, 100, 0.2);
}

.alert.error {
    background: rgba(167, 69, 55, 0.12);
    color: #7a3127;
    border: 1px solid rgba(167, 69, 55, 0.18);
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.site-footer {
    padding: 40px 0 50px;
    position: relative;
}

.gallery-note {
    margin-top: 20px;
    padding: 18px 22px;
    border-radius: var(--radius-md);
    border: 1px dashed rgba(35, 51, 61, 0.16);
    background: rgba(255, 255, 255, 0.5);
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.02)),
        radial-gradient(circle at 10% 20%, rgba(127,151,144,0.12), transparent 18%),
        radial-gradient(circle at 88% 30%, rgba(200,190,177,0.12), transparent 20%);
    pointer-events: none;
}

.footer-top {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding: 28px;
    border: 1px solid rgba(35, 51, 61, 0.08);
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(105,7,56,0.98), rgba(164,36,102,0.95));
    box-shadow: var(--shadow-hover);
    overflow: hidden;
}

.footer-top::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -60px;
    top: -50px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.14), transparent 70%);
}

.footer-brand-block,
.footer-card {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.footer-brand-block {
    padding: 18px 18px 20px;
    border-radius: 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
}

.footer-brand {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
}

.footer-brand-logo {
    display: block;
    width: min(100%, 260px);
    height: auto;
    object-fit: contain;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    padding: 10px 14px;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.18);
}

.footer-brand strong,
.footer-card,
.footer-card p,
.footer-card a,
.footer-brand p {
    color: rgba(255,255,255,0.9);
}

.footer-brand > div {
    min-width: 0;
}

.footer-brand strong {
    display: block;
    margin-bottom: 10px;
    font-size: clamp(1.6rem, 2vw, 2.2rem);
    line-height: 1.1;
    text-wrap: balance;
}

.footer-brand p {
    margin: 0;
    max-width: 32ch;
    line-height: 1.7;
}

.footer-card {
    padding: 18px 18px 20px;
    border-radius: 20px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    display: grid;
    gap: 10px;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.footer-card:hover {
    transform: translateY(-4px) scale(1.02);
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.22);
}

.footer-highlight {
    background: linear-gradient(180deg, rgba(210,85,145,0.28), rgba(255,255,255,0.08));
}

.footer-label {
    display: inline-block;
    margin-bottom: 4px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.72);
}

.footer-link {
    display: inline-flex;
    width: fit-content;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: transform 0.25s ease, color 0.25s ease;
}

.footer-link:hover {
    transform: translateX(4px);
    color: #ffffff;
}

.footer-link.subtle {
    font-weight: 600;
    color: rgba(255,255,255,0.78);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 6px 0;
}

.footer-bottom p {
    color: rgba(35, 51, 61, 0.72);
    font-size: 0.92rem;
}

.chatbot-widget {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 120;
    display: grid;
    justify-items: end;
    gap: 14px;
}

.chatbot-toggle {
    width: 68px;
    height: 68px;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    background: linear-gradient(135deg, var(--strong-sea), var(--sea));
    box-shadow: 0 22px 42px rgba(42, 53, 49, 0.24);
    display: grid;
    place-items: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.chatbot-toggle:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 26px 46px rgba(42, 53, 49, 0.3);
}

.chatbot-toggle-icon {
    position: relative;
    width: 30px;
    height: 22px;
    border-radius: 12px;
    background: #fff;
}

.chatbot-toggle-icon::before {
    content: "";
    position: absolute;
    left: 6px;
    bottom: -5px;
    width: 12px;
    height: 12px;
    background: #fff;
    clip-path: polygon(0 0, 100% 0, 35% 100%);
}

.chatbot-toggle-icon::after {
    content: "";
    position: absolute;
    top: 6px;
    left: 7px;
    width: 16px;
    height: 10px;
    border-top: 2px solid rgba(124, 28, 82, 0.26);
    border-bottom: 2px solid rgba(124, 28, 82, 0.26);
}

.chatbot-panel {
    width: min(380px, calc(100vw - 24px));
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(35, 51, 61, 0.1);
    background: rgba(251, 247, 241, 0.96);
    box-shadow: 0 28px 70px rgba(42, 53, 49, 0.24);
    backdrop-filter: blur(18px);
}

.chatbot-header {
    padding: 20px 22px 18px;
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 14px;
    background: linear-gradient(135deg, rgba(105, 7, 56, 0.98), rgba(196, 71, 135, 0.94));
    color: #fff;
}

.chatbot-header p {
    color: rgba(255, 255, 255, 0.82);
    margin-top: 6px;
}

.chatbot-close {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.4rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
}

.chatbot-messages {
    max-height: 340px;
    overflow-y: auto;
    padding: 18px;
    display: grid;
    gap: 12px;
    background:
        radial-gradient(circle at top left, rgba(196, 71, 135, 0.14), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.08));
}

.chatbot-message {
    max-width: 85%;
    padding: 14px 16px;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(42, 53, 49, 0.08);
}

.chatbot-message p {
    color: inherit;
    line-height: 1.55;
}

.chatbot-message-user {
    margin-left: auto;
    border-bottom-right-radius: 6px;
    background: linear-gradient(135deg, var(--strong-sea), var(--sea));
    color: #fff;
}

.chatbot-message-bot {
    border-bottom-left-radius: 6px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--text);
    border: 1px solid rgba(35, 51, 61, 0.08);
}

.chatbot-shortcuts {
    display: flex;
    gap: 10px;
    padding: 0 18px 16px;
    flex-wrap: wrap;
}

.chatbot-shortcuts button {
    border: 1px solid rgba(124, 28, 82, 0.14);
    background: rgba(255, 255, 255, 0.82);
    color: var(--sea-deep);
    border-radius: 999px;
    padding: 9px 14px;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
}

.chatbot-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 0 18px 18px;
}

.chatbot-form input {
    width: 100%;
    min-width: 0;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(35, 51, 61, 0.12);
    background: rgba(255, 255, 255, 0.94);
    font: inherit;
    color: var(--text);
}

.chatbot-form button {
    border: 0;
    border-radius: 16px;
    padding: 0 18px;
    cursor: pointer;
    background: linear-gradient(135deg, var(--strong-sea), var(--sea));
    color: #fff;
    font: inherit;
    font-weight: 700;
}

.chatbot-form input:focus {
    outline: none;
    border-color: rgba(86, 106, 100, 0.45);
    box-shadow: 0 0 0 4px rgba(196, 71, 135, 0.16);
}

.chatbot-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;
}

.cookie-bar {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 130;
}

.cookie-bar-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 24px;
    border-radius: 24px;
    border: 1px solid rgba(35, 51, 61, 0.12);
    background: rgba(255, 250, 243, 0.98);
    box-shadow: 0 26px 60px rgba(42, 53, 49, 0.18);
    backdrop-filter: blur(14px);
}

.cookie-bar-copy {
    max-width: 72ch;
}

.cookie-bar-copy strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.cookie-bar-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.cookie-bar-button {
    min-width: 140px;
    border: 0;
    border-radius: 16px;
    padding: 14px 18px;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.cookie-bar-button-primary {
    background: linear-gradient(135deg, var(--strong-sea), var(--sea));
    color: #fff;
    box-shadow: var(--shadow-sm);
}

.cookie-bar-button-secondary {
    background: rgba(255, 255, 255, 0.86);
    color: var(--text);
    border: 1px solid rgba(35, 51, 61, 0.12);
}

.cookie-bar-button:hover {
    transform: translateY(-2px);
}

.cookie-preferences-trigger {
    position: fixed;
    left: 18px;
    bottom: 18px;
    z-index: 129;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    background: linear-gradient(135deg, var(--strong-sea), var(--sea));
    color: #fff;
    box-shadow: 0 18px 40px rgba(42, 53, 49, 0.2);
    font: inherit;
    font-weight: 700;
}

.cookie-trigger-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid currentColor;
    position: relative;
}

.cookie-trigger-icon::before,
.cookie-trigger-icon::after {
    content: "";
    position: absolute;
    background: currentColor;
    border-radius: 999px;
}

.cookie-trigger-icon::before {
    width: 2px;
    height: 10px;
    left: 6px;
    top: 2px;
}

.cookie-trigger-icon::after {
    width: 10px;
    height: 2px;
    left: 2px;
    top: 6px;
}

.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 140;
}

.cookie-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(33, 45, 41, 0.36);
    backdrop-filter: blur(7px);
}

.cookie-modal-dialog {
    position: relative;
    width: min(980px, calc(100% - 32px));
    max-height: calc(100vh - 48px);
    margin: 24px auto;
    padding: 30px;
    overflow: auto;
    border-radius: 28px;
    border: 1px solid rgba(35, 51, 61, 0.12);
    background: rgba(255, 250, 243, 0.99);
    box-shadow: 0 32px 90px rgba(42, 53, 49, 0.26);
}

.cookie-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    background: rgba(35, 51, 61, 0.08);
    color: var(--text);
    font-size: 1.5rem;
}

.cookie-modal-header h3 {
    margin: 0 0 12px;
    font-size: clamp(1.7rem, 3vw, 3rem);
}

.cookie-modal-list {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.cookie-modal-item {
    padding: 22px;
    border-radius: 22px;
    border: 1px solid rgba(35, 51, 61, 0.08);
    background: rgba(255, 255, 255, 0.82);
}

.cookie-modal-item-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 10px;
}

.cookie-modal-item-top strong {
    font-size: 1.35rem;
}

.cookie-modal-state {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
}

.cookie-modal-state.always {
    background: rgba(105, 7, 56, 0.1);
    color: var(--strong-sea);
}

.cookie-switch {
    position: relative;
    display: inline-flex;
}

.cookie-switch input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.cookie-switch span {
    width: 46px;
    height: 28px;
    border-radius: 999px;
    background: rgba(35, 51, 61, 0.18);
    position: relative;
    transition: background 0.25s ease;
}

.cookie-switch span::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    transition: transform 0.25s ease;
}

.cookie-switch input:checked + span {
    background: var(--sea);
}

.cookie-switch input:checked + span::before {
    transform: translateX(18px);
}

.cookie-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    margin-top: 26px;
}

.reviews-showcase {
    display: grid;
    gap: 22px;
}

.reviews-badge {
    width: fit-content;
    margin: 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(35, 51, 61, 0.08);
    box-shadow: 0 16px 34px rgba(42, 53, 49, 0.08);
    font-size: 1.1rem;
}

.reviews-badge strong,
.reviews-badge span {
    color: #1f2f2b;
}

.reviews-badge-star {
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #1f2f2b;
    color: #fff;
    font-size: 0.9rem;
}

.reviews-badge-google {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.reviews-row-polished {
    align-items: stretch;
}

.review-card-polished {
    min-height: 260px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(35, 51, 61, 0.12);
    box-shadow: 0 16px 34px rgba(42, 53, 49, 0.08);
}

.review-card-polished::before,
.review-card-polished::after {
    display: none;
}

.review-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
}

.review-person {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-avatar {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #ff7b21, #ff5d0a);
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
}

.review-person strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.review-meta {
    display: block;
    color: #7b827e;
    font-size: 0.92rem;
}

.google-mark {
    font-weight: 800;
    font-size: 1.6rem;
    line-height: 1;
    background: linear-gradient(135deg, #4285f4 0 25%, #34a853 25% 50%, #fbbc05 50% 75%, #ea4335 75% 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.review-stars-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.review-stars {
    margin-bottom: 0;
    color: #f4b400;
    letter-spacing: 0.12em;
}

.review-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #3b82f6;
    position: relative;
    flex: 0 0 18px;
}

.review-check::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 3px;
    width: 5px;
    height: 8px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(38deg);
}

.review-copy {
    color: #202b27;
    font-size: 1.02rem;
    line-height: 1.6;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-delay {
    transition-delay: 0.12s;
}

.reveal-delay-2 {
    transition-delay: 0.24s;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes drift {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(18px, -20px, 0) scale(1.08);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.45;
    }
    50% {
        transform: scale(1.18);
        opacity: 0.8;
    }
}

@keyframes timelinePulse {
    0%, 100% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(196, 71, 135, 0.16);
    }
    50% {
        transform: scale(1.22);
        box-shadow: 0 0 0 14px rgba(196, 71, 135, 0.24);
    }
}

@keyframes homeHeroReveal {
    0% {
        opacity: 0;
        transform: translateY(36px) translateX(-16px) scale(0.98);
        filter: blur(6px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) translateX(0) scale(1);
        filter: blur(0);
    }
}

@keyframes homeShowcaseReveal {
    0% {
        opacity: 0;
        transform: translateY(42px) translateX(18px) scale(0.97);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) translateX(0) scale(1);
        filter: blur(0);
    }
}

@keyframes homeCardRise {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.97);
    }
    55% {
        opacity: 1;
        transform: translateY(-6px) scale(1.01);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

@keyframes heroPanelShine {
    0%,
    100% {
        transform: rotate(14deg) translateX(-120%);
        opacity: 0;
    }
    20% {
        opacity: 0;
    }
    45% {
        opacity: 1;
    }
    70% {
        transform: rotate(14deg) translateX(240%);
        opacity: 0;
    }
}

@keyframes homeOrbFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(20px, -18px, 0) scale(1.08);
    }
}

@media (max-width: 1024px) {
    .hero-grid,
    .split-panel,
    .contact-layout,
    .double-grid,
    .subhero-grid,
    .footer-top {
        grid-template-columns: 1fr;
    }

    .feature-grid,
    .service-grid,
    .facility-grid,
    .faq-grid,
    .reviews-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .admin-panel-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .nav-wrap {
        flex-wrap: wrap;
        justify-content: center;
    }

    .brand {
        justify-content: center;
        width: 100%;
    }

    .brand-logo {
        width: min(100%, 280px);
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .footer-brand-logo {
        width: min(100%, 240px);
    }

    .feature-grid,
    .service-grid,
    .facility-grid,
    .faq-grid,
    .mini-grid,
    .field-grid,
    .reviews-row {
        grid-template-columns: 1fr;
    }

    .hero,
    .subhero {
        padding: 46px 0 30px;
    }

    .hero-copy,
    .hero-showcase,
    .contact-panel {
        padding: 24px;
    }

    .hero-copy h1,
    .subhero h1 {
        font-size: 2.45rem;
    }

    .chatbot-widget {
        right: 14px;
        bottom: 14px;
        left: 14px;
    }

    .cookie-bar-card {
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
        border-radius: 22px;
    }

    .cookie-bar-actions {
        justify-content: stretch;
    }

    .cookie-bar-button {
        width: 100%;
    }

    .cookie-preferences-trigger {
        left: 14px;
        right: 14px;
        justify-content: center;
        bottom: 14px;
    }

    .cookie-modal-dialog {
        width: calc(100% - 20px);
        margin: 10px auto;
        padding: 20px;
        border-radius: 24px;
    }

    .cookie-modal-item-top {
        align-items: start;
    }

    .cookie-modal-actions {
        flex-direction: column;
    }

    .chatbot-panel {
        width: 100%;
    }

    .chatbot-toggle {
        width: 62px;
        height: 62px;
    }

    .admin-auth-card,
    .admin-panel-card {
        padding: 24px;
    }

    .admin-panel-top {
        flex-direction: column;
    }

    .admin-action-group {
        flex-direction: column;
    }

    .admin-table {
        min-width: 0;
    }
}

