@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Great+Vibes&family=Inter:wght@400;500;600;700;800&display=swap');
:root {
    --font-playfair: 'Cormorant Garamond', 'Times New Roman', serif;
    --font-sans: 'Inter', 'Segoe UI', Arial, sans-serif;
    --bg: #f8f4ec;
    --bg-soft: #f7f2ea;
    --surface: rgba(255, 255, 255, 0.72);
    --surface-strong: #ffffff;
    --surface-dark: rgba(9, 17, 31, 0.92);
    --surface-dark-2: rgba(11, 20, 34, 0.78);
    --text: #2d2d2d;
    --muted: #707070;
    --navy: #0f1b2d;
    --navy-2: #192638;
    --gold: #c89a3d;
    --gold-soft: #ead08e;
    --line: #e8ded0;
    --shadow: 0 22px 55px rgba(15, 26, 40, 0.14);
    --shadow-heavy: 0 28px 70px rgba(6, 11, 18, 0.24);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    font-family: var(--font-sans);
    background:
        radial-gradient(circle at top left, rgba(199, 156, 75, 0.14), transparent 24%),
        radial-gradient(circle at top right, rgba(15, 26, 40, 0.08), transparent 28%),
        var(--bg);
}

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
}

button,
button[type="button"],
button[type="submit"],
button[type="reset"],
.btn,
.nav a,
.lang-switcher a,
.wizard-service-card,
.icon-field-button,
.service-tile {
    cursor: pointer;
}

button:disabled,
button[disabled],
.btn:disabled,
.btn[disabled] {
    cursor: not-allowed;
}

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

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

.centered-header {
    text-align: center;
    justify-items: center;
}

.centered-actions {
    justify-content: center;
}

.narrow-block {
    max-width: 980px;
}

.section {
    padding: 88px 0;
}

.section-center .container {
    display: grid;
    place-items: center;
}

.section-header {
    display: grid;
    gap: 14px;
    margin-bottom: 32px;
}

.section-title,
.section-header h2 {
    font-family: var(--font-playfair), Georgia, serif;
}

.nav,
.nav a,
.nav-cta,
.footer,
.footer * {
    font-family: var(--font-sans);
}

.admin-page,
.admin-page * {
    font-family: var(--font-sans);
}

.admin-page {
    color: #fff;
    background:
        radial-gradient(circle at top left, rgba(199, 156, 75, 0.08), transparent 24%),
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.04), transparent 22%),
        linear-gradient(180deg, #07111c 0%, #05080d 100%);
}

.admin-page .topbar--scrolled {
    background: rgba(7, 17, 28, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

.footer h4,
.footer .footer-bottom {
    font-family: var(--font-playfair), ui-serif, Georgia, serif;
}

.admin-page .page-title,
.admin-page .section-title,
.admin-page .section-header h2,
.admin-page .card-heading,
.admin-page .sidebar-title,
.admin-page .order-name,
.admin-page .badge,
.admin-page .kicker,
.admin-page .section-subtitle,
.admin-page .muted,
.admin-page .order-meta,
.admin-page .order-note,
.admin-page .nav,
.admin-page .nav a,
.admin-page .nav-cta,
.admin-page .topbar,
.admin-page .topbar * {
    font-family: var(--font-sans);
}

.admin-page .page-title,
.admin-page .card-heading,
.admin-page .sidebar-title {
    letter-spacing: -0.02em;
}

.admin-page .section-header {
    gap: 10px;
    margin-bottom: 22px;
}

.admin-page .form-card,
.admin-page .admin-card,
.admin-page .order-item {
    background: rgba(15, 26, 40, 0.92);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-heavy);
}

.admin-page .muted,
.admin-page .section-subtitle,
.admin-page .order-meta {
    color: rgba(255, 255, 255, 0.72);
}

.admin-page input,
.admin-page textarea,
.admin-page select {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.admin-page input::placeholder,
.admin-page textarea::placeholder {
    color: rgba(255, 255, 255, 0.48);
}

.admin-page input:focus,
.admin-page textarea:focus,
.admin-page select:focus {
    border-color: rgba(199, 156, 75, 0.82);
    box-shadow: 0 0 0 4px rgba(199, 156, 75, 0.16);
}

.admin-page .btn-outline,
.admin-page .btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.18);
}

.admin-page .btn-primary {
    background: var(--gold);
    color: #1d232b;
}

.admin-page .admin-booking-card {
    width: 100%;
    max-width: none;
}

.admin-page .admin-booking-card .card-heading {
    margin-bottom: 8px;
}

.admin-page .admin-booking-card {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.14);
    background-image: none;
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(18px);
    box-shadow: 0 26px 70px rgba(6, 11, 18, 0.28);
    color: #fff;
    padding: 26px;
}

.admin-page .admin-booking-card::before {
    content: none;
}

.admin-page .admin-booking-card > * {
    position: relative;
    z-index: 1;
}

.admin-page .admin-booking-card .card-heading,
.admin-page .admin-booking-card .muted {
    color: #fff;
}

.admin-page .admin-booking-card .admin-form {
    gap: 16px;
}

.admin-page .admin-booking-card .field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.admin-page .admin-booking-card .date-time-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.admin-page .admin-booking-card .service-tile-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.admin-page .admin-booking-card .booking-section {
    margin-bottom: 0;
}

.admin-page .admin-booking-card .booking-section-title {
    color: var(--gold-soft);
    margin-bottom: 14px;
    text-align: center;
}

.admin-page .admin-booking-card .field {
    gap: 8px;
}

.admin-page .admin-booking-card label {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.9rem;
}

.admin-page .admin-booking-card input,
.admin-page .admin-booking-card textarea,
.admin-page .admin-booking-card select {
    background: rgba(8, 18, 30, 0.9);
    color: #edf4ff;
    border-color: rgba(156, 182, 214, 0.28);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.admin-page .admin-booking-card input::placeholder,
.admin-page .admin-booking-card textarea::placeholder {
    color: rgba(214, 226, 244, 0.7);
}

.admin-page .admin-booking-card input:focus,
.admin-page .admin-booking-card textarea:focus,
.admin-page .admin-booking-card select:focus {
    border-color: rgba(214, 171, 86, 0.78);
    box-shadow: 0 0 0 4px rgba(214, 171, 86, 0.2);
}

.admin-page .admin-booking-card .icon-field-card {
    background: rgba(8, 18, 30, 0.52);
    border-color: rgba(156, 182, 214, 0.2);
}

.admin-page .admin-booking-card .icon-field-button {
    background: rgba(8, 18, 30, 0.92);
    color: #e5efff;
    border-color: rgba(156, 182, 214, 0.34);
    box-shadow: 0 10px 24px rgba(1, 6, 14, 0.45);
}

.admin-page .admin-booking-card .icon-field-icon,
.admin-page .admin-booking-card .icon-field-label {
    color: #e5efff;
}

.admin-page .admin-booking-card .service-tile {
    background: rgba(8, 18, 30, 0.58);
    border-color: rgba(156, 182, 214, 0.22);
}

.admin-page .admin-booking-card .service-tile.is-selected {
    border-color: rgba(214, 171, 86, 0.72);
    background: rgba(214, 171, 86, 0.2);
}

.admin-page .admin-booking-card textarea {
    min-height: 132px;
    resize: vertical;
}

.admin-page .admin-booking-card .btn-primary {
    box-shadow: 0 14px 28px rgba(199, 156, 75, 0.24);
}

.admin-page .admin-requests-block {
    display: grid;
    gap: 16px;
    margin-top: 8px;
}

.admin-page .admin-requests-block .card-heading {
    margin: 0;
}

.admin-page .admin-requests-block .order-list {
    gap: 16px;
}

.sidebar-brand,
.auth-brand {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sidebar-brand {
    grid-template-columns: none;
    min-height: 0;
    padding: 0;
    margin: 0 0 16px;
    background: transparent;
    border: 0;
    box-shadow: none;
    justify-content: flex-start;
    align-items: flex-start;
}

.sidebar-logo,
.sidebar-brand img,
.auth-brand img {
    display: block;
    width: min(100%, 176px);
    height: auto;
    max-height: 96px;
    object-fit: contain;
    object-position: center;
}

.sidebar-logo {
    width: 160px !important;
    max-width: 160px !important;
    max-height: 72px !important;
    margin: 0 auto 10px;
    justify-self: center;
    align-self: start;
}

.sidebar-brand img {
    width: min(100%, 168px);
    max-height: 64px;
}

.sidebar-brand:hover,
.sidebar-brand.active {
    background: transparent;
    border: 0;
    box-shadow: none;
    color: inherit;
}

.auth-brand img {
    width: min(100%, 150px);
    max-height: 74px;
}

.admin-top-logout {
    min-height: 42px;
    padding-inline: 16px;
}

.admin-auth .form-card {
    padding: 34px;
}

.admin-auth .auth-brand {
    margin-bottom: 18px;
}

.admin-auth form {
    display: grid;
    gap: 16px;
    text-align: left;
}

.admin-auth .field {
    gap: 10px;
}

.admin-auth .btn {
    margin-top: 6px;
}

.section-title,
.page-title {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.02;
}

.section-subtitle {
    margin: 0;
    max-width: 760px;
    color: var(--muted);
    line-height: 1.7;
}

.kicker {
    margin: 0;
    font-size: 0.76rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--gold);
    color: #1d232b;
    box-shadow: 0 14px 28px rgba(199, 156, 75, 0.24);
}

.btn-secondary,
.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.22);
}

.btn-dark {
    background: var(--navy);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.06);
}

.btn-success {
    background: linear-gradient(135deg, #1f9d63, #26b977);
    color: #f3fff9;
    border-color: rgba(155, 255, 213, 0.34);
    box-shadow: 0 14px 26px rgba(24, 133, 84, 0.32);
}

.btn-warning {
    background: linear-gradient(135deg, #d28d2f, #e6a647);
    color: #2c1d08;
    border-color: rgba(255, 226, 172, 0.38);
    box-shadow: 0 14px 26px rgba(164, 106, 34, 0.3);
}

.btn-danger {
    background: linear-gradient(135deg, #bb3146, #d1455b);
    color: #fff3f5;
    border-color: rgba(255, 194, 204, 0.34);
    box-shadow: 0 14px 26px rgba(140, 36, 55, 0.32);
}

.btn-success:hover,
.btn-warning:hover,
.btn-danger:hover {
    filter: brightness(1.03);
}

.no-print {
    display: block;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 40;
    background: transparent;
    border-bottom: 1px solid transparent;
    box-shadow: none;
    backdrop-filter: none;
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.topbar--scrolled {
    background: rgba(243, 234, 219, 0.86);
    border-bottom-color: rgba(21, 32, 44, 0.08);
    box-shadow: 0 10px 24px rgba(15, 26, 40, 0.08);
    backdrop-filter: blur(18px);
}

.topbar--top {
    background: transparent !important;
    border-bottom-color: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
}

.topbar-inner,
.topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: min(1180px, calc(100% - 40px));
}

.topbar-inner {
    padding: 16px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.brand img {
    height: 34px;
    width: auto;
}

.topbar--top .nav,
.topbar--top .nav a,
.topbar--top .brand {
    color: #fff;
}

.topbar--top .brand img {
    filter: none;
}

.nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
    color: var(--muted);
    font-size: 0.96rem;
}

.nav,
.nav a,
.nav-cta,
.lang-switcher,
.lang-switcher a {
    font-family: var(--font-sans);
}

.nav a {
    position: relative;
    padding: 6px 0;
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.nav a.active,
.nav a[aria-current="page"],
.nav a:hover {
    color: var(--navy);
}

.nav a.active::after,
.nav a[aria-current="page"]::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 2px;
    border-radius: 999px;
    background: var(--gold);
    box-shadow: 0 0 0 4px rgba(199, 156, 75, 0.12);
}

.nav a.active,
.nav a[aria-current="page"] {
    color: var(--navy);
    font-weight: 700;
}

.nav-cta {
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--navy);
    color: #fff !important;
}

.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    white-space: nowrap;
}

.lang-switcher a {
    position: relative;
    padding: 4px 0;
    color: inherit;
}

.lang-switcher a.active {
    color: var(--navy);
}

.lang-switcher a.active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: currentColor;
}

.lang-switcher span {
    opacity: 0.5;
}

.topbar--top .lang-switcher {
    color: #fff;
}

.topbar--top .lang-switcher a.active {
    color: #fff;
}

.topbar--top .lang-switcher span {
    opacity: 0.7;
}

.topbar--top .nav a.active,
.topbar--top .nav a[aria-current="page"],
.topbar--top .nav a:hover {
    color: #fff;
}

.topbar--top .nav a.active::after,
.topbar--top .nav a[aria-current="page"]::after {
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.12);
}

.mobile-lang-switcher {
    display: none;
}

.topbar--top .nav-cta {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.nav-toggle {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(15, 26, 40, 0.18);
    background: rgba(255, 255, 255, 0.92);
    color: var(--navy);
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(10, 16, 25, 0.08);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.nav-toggle:hover {
    transform: translateY(-1px);
}

.nav-toggle.is-open {
    background: rgba(255, 255, 255, 0.98);
}

.nav-toggle-icon {
    width: 22px;
    height: 22px;
    display: block;
    stroke: currentColor;
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
}

.nav-toggle-label {
    font-size: 0.84rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: grid;
    align-items: center;
    color: #fff;
    background:
        linear-gradient(rgba(8, 14, 22, 0.48), rgba(8, 14, 22, 0.58)),
        url('images/hero-villa.jpg') center/cover no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(135deg, rgba(255,255,255,0.08) 0 2px, transparent 2px 100%),
        linear-gradient(rgba(255,255,255,0.03) 0 2px, transparent 2px 100%);
    background-size: 90px 90px;
    opacity: 0.24;
    pointer-events: none;
}

.hero-home {
    padding: 36px 0 24px;
}

.home-page .hero {
    margin-top: -80px;
    padding-top: 80px;
}

.home-page .topbar {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
}

.home-page .topbar-inner {
    padding-top: 22px;
}

.home-page .topbar--scrolled,
.home-page .topbar--top {
    position: fixed;
}

.hero-shell {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
    padding: 72px 0 88px;
}

.hero-copy {
    text-align: center;
}

.hero h1 {
    margin: 8px 0 14px;
    font-size: clamp(3.6rem, 8vw, 6.2rem);
    line-height: 0.95;
    font-weight: 500;
}

.hero p {
    margin: 0 auto 24px;
    max-width: 720px;
    font-size: 1.06rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.hero .actions {
    justify-content: center;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: stretch;
}

.photo-frame {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    min-height: 520px;
    border: 1px solid rgba(21, 32, 44, 0.08);
    box-shadow: var(--shadow);
    background: rgba(255, 255, 255, 0.28);
}

.compact-photo {
    min-height: 420px;
}

.about-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.28);
}

.about-panel {
    display: grid;
    gap: 12px;
    align-content: center;
    height: 100%;
    min-height: 420px;
    padding: 28px;
    text-align: center;
}

.about-panel .card-title {
    font-size: 2rem;
    margin: 0 0 8px;
}

.about-points {
    display: grid;
    gap: 10px;
    margin-top: 10px;
}

.about-points div {
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(199, 156, 75, 0.09);
    color: var(--navy);
    border: 1px solid rgba(199, 156, 75, 0.18);
}

.panel,
.card,
.form-card,
.admin-card,
.contact-card,
.booking-background-card,
.booking-form-card,
.booking-panel {
    border-radius: 24px;
    background: var(--surface-strong);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.card-body {
    padding: 18px;
}

.card-title {
    margin: 0 0 8px;
    font-size: 1.8rem;
}

.muted,
.card-text {
    margin: 0;
    color: var(--muted);
    line-height: 1.68;
}

.contact-section {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    display: grid;
    align-items: center;
    margin-top: 18px;
    padding: 84px 0 92px;
    background: #0f1a28;
    isolation: isolate;
}

.contact-section-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.contact-section-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.12);
    filter: blur(22px) brightness(0.48) saturate(0.92);
}

.contact-section::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(rgba(10, 16, 25, 0.32), rgba(10, 16, 25, 0.72)),
        linear-gradient(180deg, rgba(7, 12, 19, 0.1), rgba(7, 12, 19, 0.18));
}

.contact-section-content {
    position: relative;
    z-index: 2;
    width: min(100%, 1180px);
}

.contact-section-header {
    color: #fff;
    margin-bottom: 26px;
}

.contact-section-header .section-title,
.contact-section-header .section-subtitle {
    color: #fff;
}

.contact-section-subtitle {
    opacity: 0.92;
}

.contact-card-overlay {
    width: min(720px, 100%);
    margin: 0 auto;
    background: rgba(9, 17, 31, 0.36);
    border-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-heavy);
    color: #fff;
}

.contact-card-overlay h3,
.contact-card-overlay p {
    color: #fff;
}

.contact-card-overlay .kicker {
    letter-spacing: 0.18em;
    color: var(--gold-soft) !important;
}

.contact-card-overlay .btn-primary {
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04), 0 14px 26px rgba(199, 156, 75, 0.18);
}

.contact-actions-inline {
    justify-content: center;
    margin-top: 18px;
}

.footer {
    padding: 42px 0 18px;
    background: linear-gradient(180deg, #0c1523, #09111b);
    color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.footer-grid h4 {
    margin: 0 0 12px;
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
}

.footer-grid p {
    margin: 0 0 10px;
    line-height: 1.7;
}

.footer-brand-block {
    max-width: 360px;
}

.footer-brand {
    margin-bottom: 14px;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
}

.footer-socials svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    color: rgba(255, 255, 255, 0.68);
}

.booking-page {
    background: #09111b;
    color: #fff;
}

.booking-hero {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    padding: 48px 0 56px;
    background:
        linear-gradient(rgba(9, 17, 27, 0.42), rgba(9, 17, 27, 0.52)),
        url('images/booking-interior.webp') center/cover no-repeat;
}

.booking-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    backdrop-filter: blur(7px);
}

.booking-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(9, 17, 27, 0.28), rgba(9, 17, 27, 0.62));
}

.booking-shell {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 28px;
    justify-items: center;
}

.booking-shell .section-header {
    margin-bottom: 0;
    color: #fff;
    max-width: 820px;
}

.booking-shell .section-subtitle,
.booking-shell .page-title,
.booking-shell .kicker {
    color: #fff;
}

.booking-background-card,
.booking-form-card {
    width: min(100%, 820px);
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(18px);
    box-shadow: 0 26px 70px rgba(6, 11, 18, 0.28);
    color: #fff;
    padding: 26px;
}

.booking-background-card label,
.booking-background-card .booking-section-title,
.booking-background-card .muted,
.booking-background-card .page-title {
    color: #fff;
}

.booking-page .booking-form-card form {
    display: grid;
    gap: 18px;
}

.booking-page .booking-section {
    margin-bottom: 0;
}

.booking-page .booking-section + .field-grid,
.booking-page .field-grid + .field-grid,
.booking-page .field-grid + .booking-section {
    margin-top: 2px;
}

.booking-page .field-grid {
    gap: 14px;
}

.booking-page .field input,
.booking-page .field textarea {
    min-height: 52px;
}

.booking-section {
    margin-bottom: 22px;
}

.booking-section-title {
    margin-bottom: 14px;
    font-size: 0.88rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-soft);
}

.field-grid,
.date-time-grid,
.service-tile-grid {
    display: grid;
    gap: 14px;
}

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

.date-time-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-tile-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.field {
    display: grid;
    gap: 8px;
}

.field label {
    font-size: 0.9rem;
    color: inherit;
}

.booking-page .field label,
.admin-page .admin-booking-card .field label {
    display: none;
}

.booking-page .field,
.admin-page .admin-booking-card .field {
    gap: 0;
}

.booking-page .field-grid,
.admin-page .admin-booking-card .field-grid {
    gap: 16px;
}

.booking-page .booking-section .field-grid + .field-grid,
.admin-page .admin-booking-card .booking-section .field-grid + .field-grid {
    margin-top: 14px;
}

.booking-page .booking-section .field,
.admin-page .admin-booking-card .booking-section .field {
    margin-top: 0;
}

input,
textarea,
select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(21, 32, 44, 0.14);
    background: rgba(255, 255, 255, 0.92);
    color: var(--text);
    outline: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

textarea {
    min-height: 132px;
    resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
    border-color: rgba(199, 156, 75, 0.8);
    box-shadow: 0 0 0 4px rgba(199, 156, 75, 0.14);
}

.notice {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
}

.notice.success {
    background: rgba(62, 161, 112, 0.18);
    border-color: rgba(62, 161, 112, 0.22);
}

.service-tile {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 10px;
    padding: 18px 14px 16px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 14px 30px rgba(10, 16, 25, 0.16);
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    text-align: center;
    min-width: 0;
    container-type: inline-size;
}

.service-tile:hover {
    transform: translateY(-2px);
}

.service-tile.is-selected {
    border-color: rgba(199, 156, 75, 0.72);
    background: rgba(199, 156, 75, 0.14);
}

.service-tile input {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}

.service-icon {
    font-size: 2rem;
    line-height: 1;
    color: var(--gold-soft);
}

.service-icon svg,
.icon-field-icon svg {
    width: 28px;
    height: 28px;
    display: block;
    stroke: currentColor;
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-label {
    font-size: clamp(0.6rem, 11cqw, 0.96rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    max-width: 100%;
    text-wrap: balance;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.icon-field-card {
    display: grid;
    gap: 12px;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 30px rgba(10, 16, 25, 0.16);
}

.picker-field {
    justify-items: center;
}

.icon-field-button {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.92);
    color: var(--muted);
    box-shadow: 0 14px 28px rgba(14, 23, 36, 0.12);
    cursor: pointer;
}

.icon-field-button:hover {
    transform: translateY(-2px);
}

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

.icon-field-visual {
    display: grid;
    justify-items: center;
    gap: 8px;
    text-align: center;
    color: #fff;
}

.icon-field-icon {
    color: var(--muted);
}

.icon-field-label {
    font-size: 0.9rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.icon-field-value {
    margin-top: 2px;
    font-size: 0.78rem;
    letter-spacing: 0.02em;
    color: rgba(236, 244, 255, 0.86);
    min-height: 1.1em;
}

.icon-field-card input,
.icon-field-card textarea {
    text-align: center;
}

.booking-submit {
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.booking-image {
    min-height: 360px;
}

.booking-layout {
    margin-top: 8px;
    align-items: start;
}

.admin-intro {
    margin-bottom: 24px;
}

.admin-shell {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    min-height: 100dvh;
    padding: 0;
    align-items: stretch;
}

.sidebar {
    position: sticky;
    top: 0;
    align-self: stretch;
    display: grid;
    gap: 10px;
    padding: 24px;
    border-radius: 0;
    background: linear-gradient(180deg, rgba(15, 26, 40, 0.98), rgba(24, 37, 55, 0.98));
    color: #fff;
    box-shadow: var(--shadow-heavy);
    height: 100dvh;
    overflow: auto;
}

.admin-page .content-area {
    padding: 24px;
}

.admin-page .sidebar {
    align-content: start;
}

.admin-dashboard .topbar {
    display: none;
}

.admin-dashboard .sidebar {
    display: flex;
    flex-direction: column;
}

.admin-page .sidebar .kicker {
    justify-self: center;
    text-align: center;
    margin: -2px 0 6px;
}

.sidebar-logout {
    margin-top: auto;
    align-self: flex-start;
    min-height: 40px;
    padding: 8px 14px;
    font-size: 0.86rem;
}

.sidebar .sidebar-logout {
    display: inline-flex;
    grid-template-columns: none;
    min-height: 40px;
    padding: 8px 14px;
    gap: 0;
}

.mobile-logout-row {
    display: none;
}

.mobile-logout {
    min-height: 38px;
    padding: 7px 12px;
    font-size: 0.82rem;
}

.admin-dashboard .sidebar .sidebar-logout {
    display: inline-flex;
}

.admin-dashboard .mobile-logout-row {
    display: none !important;
}

@media (hover: hover) and (pointer: fine) {
    .admin-dashboard .mobile-logout-row {
        display: none !important;
    }

    .admin-dashboard .sidebar .sidebar-logout {
        display: inline-flex !important;
    }
}

@media (min-width: 901px) {
    .admin-dashboard .mobile-logout-row {
        display: none !important;
    }

    .admin-dashboard .sidebar .sidebar-logout {
        display: inline-flex !important;
    }

    .admin-page .page-back-link-desktop {
        display: inline-flex !important;
    }
}

.sidebar a {
    display: grid;
    grid-template-columns: 22px 1fr;
    align-items: center;
    gap: 12px;
    min-height: 52px;
    padding: 12px 14px;
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid transparent;
}

.sidebar-icon {
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    color: var(--gold-soft);
}

.sidebar-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 1.9;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sidebar-label {
    font-size: 0.98rem;
    font-weight: 600;
}

.sidebar a.active,
.sidebar a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.sidebar-title {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 500;
}

.content-area {
    display: grid;
    gap: 20px;
}

.admin-card {
    padding: 26px;
}

.card-heading {
    margin: 0 0 10px;
    font-size: 1.8rem;
    font-weight: 500;
}

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

.schedule-table {
    display: grid;
    gap: 10px;
}

.schedule-controls {
    display: flex;
    justify-content: flex-end;
    margin: 2px 0 8px;
}

.schedule-sort-form {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.schedule-sort-form label {
    color: rgba(223, 236, 252, 0.82);
    font-size: 0.84rem;
}

.schedule-sort-form select {
    min-width: 210px;
    padding: 8px 10px;
    background: rgba(8, 18, 30, 0.92);
    color: #edf4ff;
    border: 1px solid rgba(156, 182, 214, 0.32);
}

.schedule-sort-form select option {
    background: #ffffff;
    color: #0f1b2d;
}

.schedule-sort-form select option:checked {
    background: #dbe9ff;
    color: #0f1b2d;
}

.schedule-load-more-wrap {
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.schedule-load-more {
    min-width: 132px;
}

.schedule-load-status {
    color: rgba(223, 236, 252, 0.72);
    font-size: 0.8rem;
}

.schedule-table-head,
.schedule-row {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.15fr) minmax(0, 0.8fr) minmax(0, 0.62fr) minmax(92px, 0.72fr);
    gap: 10px;
    align-items: center;
    min-width: 0;
    width: 100%;
}

.schedule-table-head {
    padding: 0 8px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(223, 236, 252, 0.72);
    font-size: clamp(0.72rem, 0.45vw + 0.62rem, 0.82rem);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
}

.schedule-table-head > span {
    min-width: 0;
    text-align: center;
    justify-self: stretch;
}

.schedule-table-actions-head {
    text-align: center;
}

.schedule-table-body {
    display: grid;
    gap: 8px;
}

.schedule-row {
    padding: 10px;
    min-height: 70px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background: rgba(5, 12, 22, 0.34);
}

.schedule-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(232, 238, 248, 0.94);
    line-height: 1.35;
    text-align: center;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
    font-size: clamp(0.8rem, 0.22vw + 0.74rem, 0.98rem);
}

.schedule-cell-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-wrap: normal;
    word-break: normal;
}

.schedule-cell-actions .btn {
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: normal;
    flex-wrap: nowrap;
    min-width: clamp(84px, 8vw, 104px);
    padding: 10px 14px;
    font-size: clamp(0.74rem, 0.18vw + 0.7rem, 0.9rem);
}

@media (max-width: 1180px) and (min-width: 901px) {
    .schedule-table-head,
    .schedule-row {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.05fr) minmax(0, 0.74fr) minmax(0, 0.56fr) minmax(84px, 0.64fr);
        gap: 8px;
    }

    .schedule-table-head {
        font-size: 0.74rem;
        letter-spacing: 0.04em;
    }

    .schedule-row {
        padding: 9px 8px;
        min-height: 64px;
    }

    .schedule-cell {
        font-size: 0.84rem;
    }

    .schedule-cell-actions .btn {
        min-width: 84px;
        padding: 8px 10px;
        font-size: 0.76rem;
    }

    .schedule-cell-actions .btn .btn-icon {
        width: 12px;
        height: 12px;
        margin-right: 4px;
    }
}
.admin-page .content-area {
    align-content: start;
}

.order-item {
    padding: 20px;
    border-radius: 22px;
    background: var(--surface-strong);
    border: 1px solid var(--line);
    box-shadow: 0 14px 30px rgba(15, 26, 40, 0.08);
    display: grid;
    gap: 8px;
}

.order-item-compact {
    cursor: default;
    gap: 10px;
}

.order-item-compact .order-name {
    margin: 8px 0 4px;
}

.order-item-compact .order-subtitle {
    margin: 0;
}

.compact-meta span {
    min-height: 44px;
}

.compact-actions {
    margin-top: 6px;
}

.details-modal-body {
    gap: 8px;
}

.detail-line {
    color: rgba(222, 233, 247, 0.92);
    line-height: 1.5;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(7, 15, 26, 0.5);
}

.detail-page-card {
    display: grid;
    gap: 16px;
}

.detail-page-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
    padding-bottom: 4px;
}

.detail-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.page-back-link {
    justify-self: flex-start;
    width: fit-content;
}

.detail-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 10px;
    align-items: stretch;
}

.detail-grid span {
    min-height: 48px;
    display: flex;
    align-items: center;
}

.detail-history-block {
    display: grid;
    gap: 10px;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(7, 15, 26, 0.44);
    color: rgba(222, 233, 247, 0.92);
    line-height: 1.5;
}

.detail-history-block > strong {
    display: block;
    text-align: left;
    margin-bottom: 2px;
}

.detail-work-entry {
    margin-top: 6px;
    display: flex;
    justify-content: flex-start;
}

.work-entry-form {
    margin-top: 12px;
}

.work-entry-table-wrap {
    margin-top: 10px;
    --work-entry-columns: minmax(170px, 1.2fr) minmax(90px, 0.5fr) minmax(180px, 1.4fr) 170px;
}

.work-entry-table-head {
    display: grid;
    grid-template-columns: var(--work-entry-columns);
    gap: 10px;
    padding: 8px;
    border: 1px solid transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(223, 236, 252, 0.72);
    font-size: clamp(0.7rem, 0.5vw + 0.58rem, 0.82rem);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
}

.work-entry-table-head > span {
    text-align: center;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.work-entry-options-head {
    text-align: center;
}

.work-entry-list {
    display: grid;
    gap: 8px;
    margin-top: 8px;
}

.work-entry-row {
    display: grid;
    grid-template-columns: var(--work-entry-columns);
    gap: 10px;
    align-items: center;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    background: rgba(5, 12, 22, 0.34);
}

.work-entry-row-main {
    color: rgba(233, 242, 252, 0.94);
    line-height: 1.35;
    text-align: center;
    justify-self: stretch;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
    font-size: clamp(0.84rem, 0.28vw + 0.78rem, 0.98rem);
}

.work-entry-table-head > span:nth-child(2),
.work-entry-table-head > span:nth-child(3),
.work-entry-row > .work-entry-row-main:nth-child(2),
.work-entry-row > .work-entry-row-main:nth-child(3) {
    text-align: center;
}

.work-entry-row-actions {
    display: flex !important;
    gap: 6px;
    justify-content: center !important;
    align-items: center;
    text-align: center;
    min-width: 0;
    flex-wrap: wrap;
}

.work-entry-row-actions.options-icons-hidden .auto-btn-icon {
    display: none !important;
}

.work-entry-row-actions form {
    margin: 0;
    display: inline-flex;
}

.work-entry-btn {
    padding: 4px 10px;
    font-size: 0.72rem !important;
    line-height: 1.2;
    border-radius: 999px;
    min-height: 0;
}

.work-entry-btn-icon {
    width: 30px;
    min-width: 30px;
    height: 26px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.work-entry-btn-icon .btn-icon {
    display: inline-flex;
    width: 14px;
    height: 14px;
    margin-right: 0;
}

.work-entry-btn-icon .btn-icon svg {
    width: 14px;
    height: 14px;
}

@media (max-width: 900px) {
    .detail-page-head {
        flex-direction: column;
    }

    .detail-page-actions {
        justify-content: flex-start;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        gap: 8px;
    }

    .detail-page-actions > * {
        width: 100%;
        margin: 0;
    }

    .detail-page-actions .btn {
        width: 100%;
        justify-content: center;
    }

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

    .work-entry-table-wrap {
        --work-entry-columns: minmax(138px, 1.15fr) minmax(76px, 0.5fr) minmax(136px, 1.1fr);
        overflow-x: visible;
        padding-bottom: 4px;
    }

    .work-entry-table-head,
    .work-entry-row {
        grid-template-columns: var(--work-entry-columns);
        min-width: 0;
        width: 100%;
        gap: 8px;
    }

    .work-entry-table-head .work-entry-options-head {
        display: none;
    }

    .detail-history-block > strong {
        font-size: 1rem;
    }

    .work-entry-table-head {
        font-size: 0.68rem;
        letter-spacing: 0.04em;
    }

    .work-entry-row-main {
        font-size: 0.92rem;
        overflow-wrap: anywhere;
    }

    .work-entry-row-main,
    .work-entry-table-head > span {
        overflow-wrap: anywhere;
    }

    .work-entry-btn {
        font-size: 0.74rem !important;
        padding: 6px 8px;
    }

    .work-entry-row-actions {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        grid-column: 1 / -1;
        margin-top: 4px;
        padding-top: 4px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        width: 100%;
    }

    .work-entry-row-actions > a,
    .work-entry-row-actions form {
        display: flex;
        width: 100%;
    }

    .work-entry-row-actions .btn {
        width: 100%;
        min-height: 34px;
        justify-content: center;
    }

    .work-entry-btn-icon {
        width: 26px;
        min-width: 26px;
        height: 24px;
    }

    .work-entry-btn-icon .btn-icon,
    .work-entry-btn-icon .btn-icon svg {
        width: 12px;
        height: 12px;
    }

    .work-entry-row-main::before,
    .work-entry-row-actions::before {
        content: none;
    }

    .work-entry-row-actions {
        justify-content: center;
    }

    .schedule-table-head {
        display: none;
    }

    .schedule-controls {
        justify-content: stretch;
        margin-bottom: 8px;
    }

    .schedule-sort-form {
        width: 100%;
        justify-content: space-between;
    }

    .schedule-sort-form select {
        min-width: 0;
        width: min(100%, 220px);
    }

    .schedule-table-body {
        gap: 10px;
    }

    .schedule-row {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 10px;
        min-height: 0;
    }

    .schedule-cell {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        text-align: right;
        font-size: 0.84rem;
        line-height: 1.22;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }

    .schedule-cell:first-child {
        justify-content: center;
        text-align: center;
        font-size: 0.98rem;
        font-weight: 700;
        padding-bottom: 6px;
        margin-bottom: 2px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .schedule-cell:first-child::before {
        content: none;
    }

    .schedule-cell:not(:first-child):not(.schedule-cell-actions)::before {
        content: attr(data-label);
        flex: 0 0 auto;
        min-width: 64px;
        text-align: left;
        font-size: 0.72rem;
        letter-spacing: 0.03em;
        text-transform: uppercase;
        color: rgba(223, 236, 252, 0.72);
        font-weight: 700;
    }

    .schedule-cell-actions {
        justify-content: center;
        margin-top: 2px;
        padding-top: 6px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .schedule-cell-actions .btn {
        min-width: 0;
        width: min(100%, 220px);
        min-height: 34px;
        padding: 7px 12px;
        font-size: 0.76rem;
        justify-content: center;
    }

    .schedule-cell-actions .btn .btn-icon {
        width: 12px;
        height: 12px;
        margin-right: 4px;
    }
}

@media (max-width: 560px) {
    .work-entry-table-wrap {
        --work-entry-columns: minmax(96px, 1fr) minmax(52px, 0.55fr) minmax(76px, 0.9fr);
    }

    .work-entry-table-head,
    .work-entry-row {
        min-width: 0;
        width: 100%;
        gap: 6px;
    }

    .work-entry-table-head {
        font-size: 0.62rem;
        letter-spacing: 0.03em;
    }

    .work-entry-row-main {
        font-size: 0.8rem;
        line-height: 1.25;
    }

    .work-entry-btn {
        font-size: 0.68rem !important;
        padding: 5px 6px;
    }

    .schedule-row {
        padding: 8px;
    }

    .schedule-cell {
        font-size: 0.8rem;
    }

    .schedule-cell:first-child {
        font-size: 0.9rem;
    }

    .schedule-cell:not(:first-child):not(.schedule-cell-actions)::before {
        min-width: 58px;
        font-size: 0.68rem;
    }

    .schedule-cell-actions .btn {
        font-size: 0.72rem;
        padding: 6px 10px;
    }
}

@media (max-width: 420px) {
    .admin-page .admin-card {
        padding: 14px;
    }

    .schedule-cell {
        font-size: 0.74rem;
    }

    .schedule-cell:first-child {
        font-size: 0.86rem;
    }

    .schedule-cell-actions .btn {
        font-size: 0.68rem;
        padding: 6px 8px;
        min-height: 26px;
        width: min(100%, 190px);
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(214, 171, 86, 0.24);
    color: #f7d58e;
    border: 1px solid rgba(214, 171, 86, 0.42);
    font-size: 0.76rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
    width: fit-content;
}

.badge-appointment,
.badge-approved {
    background: rgba(214, 171, 86, 0.25);
    color: #ffe0a0;
    border-color: rgba(214, 171, 86, 0.52);
}

.badge-scheduled {
    background: rgba(61, 184, 120, 0.22);
    color: #9ff3cb;
    border-color: rgba(61, 184, 120, 0.46);
}

.badge-closed {
    background: rgba(187, 201, 221, 0.2);
    color: #dce7f7;
    border-color: rgba(187, 201, 221, 0.38);
}

.order-name {
    margin: 12px 0 6px;
    font-size: 1.35rem;
    font-weight: 500;
}

.order-subtitle,
.order-note {
    margin-top: 10px;
}

.order-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
    color: var(--muted);
    font-size: 0.92rem;
}

.order-meta span {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    line-height: 1.35;
    color: rgba(232, 238, 248, 0.92);
}

.order-item .muted {
    color: rgba(219, 228, 242, 0.9);
}

.order-subtitle {
    color: rgba(234, 240, 250, 0.95);
    font-size: 1rem;
}

.order-note {
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(9, 18, 31, 0.45);
}

.order-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.order-actions-split {
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.order-actions-left,
.order-actions-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.order-actions-right {
    margin-left: auto;
}

.btn-icon {
    display: inline-grid;
    place-items: center;
    width: 16px;
    height: 16px;
    margin-right: 6px;
}

.btn-icon svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 1.9;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.admin-page .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.admin-page .page-back-link-desktop {
    display: none;
    justify-self: flex-start;
    width: fit-content;
}

.order-actions .btn {
    cursor: pointer;
}

.edit-source-form {
    display: none;
}

.schedule-form,
.admin-form {
    display: grid;
    gap: 12px;
}

.admin-actions {
    margin-top: 10px;
}

.cleanpro-modal {
    position: fixed;
    inset: 0;
    z-index: 160;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 22px;
    overflow-y: auto;
}

.cleanpro-modal[aria-hidden="false"] {
    display: flex;
}

.cleanpro-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 10, 20, 0.68);
    backdrop-filter: blur(8px);
}

.cleanpro-modal__panel {
    position: relative;
    width: min(560px, 100%);
    max-height: calc(100dvh - 44px);
    overflow: auto;
    border-radius: 24px;
    border: 1px solid rgba(214, 171, 86, 0.26);
    background: linear-gradient(180deg, rgba(13, 24, 38, 0.98), rgba(20, 34, 52, 0.98));
    box-shadow: 0 24px 52px rgba(5, 12, 22, 0.5);
    padding: 24px;
    display: grid;
    gap: 12px;
}

.cleanpro-modal__title {
    margin: 0;
    font-size: 1.5rem;
    color: #f3f7ff;
}

.cleanpro-modal__subtitle {
    margin: 0;
    color: rgba(222, 233, 247, 0.85);
}

.cleanpro-modal__body {
    display: grid;
    gap: 10px;
    margin-top: 6px;
}

.cleanpro-modal__body input,
.cleanpro-modal__body textarea {
    width: 100%;
    background: rgba(8, 18, 30, 0.9);
    color: #edf4ff;
    border: 1px solid rgba(156, 182, 214, 0.28);
    border-radius: 14px;
    padding: 12px 14px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.cleanpro-modal__body input::placeholder,
.cleanpro-modal__body textarea::placeholder {
    color: rgba(214, 226, 244, 0.7);
}

.cleanpro-modal__body input:focus,
.cleanpro-modal__body textarea:focus {
    outline: none;
    border-color: rgba(214, 171, 86, 0.78);
    box-shadow: 0 0 0 3px rgba(214, 171, 86, 0.2);
}

.cleanpro-modal__body textarea {
    min-height: 108px;
    resize: vertical;
}

.cleanpro-modal__actions {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

body.modal-open {
    overflow: hidden;
}

.print-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 24px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #fff;
    color: #000;
}

.print-page .panel {
    margin-top: 24px;
}

.print-title {
    margin: 0;
    font-size: 2rem;
    color: #000;
}

.print-subtitle {
    margin: 8px 0 0;
    color: #222;
}

.print-meta-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.print-card {
    border: 2px solid #000;
    border-radius: 12px;
    padding: 14px;
    background: #fff;
    color: #000;
}

.print-card h2 {
    margin: 0 0 8px;
    font-size: 1.05rem;
    color: #000;
}

.print-card p {
    margin: 0 0 6px;
    color: #000;
}

.print-card-wide {
    margin-top: 14px;
}

.print-actions .btn-primary {
    background: #000;
    color: #fff;
    border-color: #000;
    box-shadow: none;
}

.print-actions .btn-outline {
    background: #fff;
    color: #000;
    border-color: #000;
}

@media print {
    body,
    .print-page,
    .print-page * {
        background: #fff !important;
        color: #000 !important;
        box-shadow: none !important;
    }

    .print-page {
        max-width: none;
        padding: 0;
    }

    .no-print {
        display: none !important;
    }
}

.footer .container {
    width: min(1180px, calc(100% - 40px));
}

.footer-brand-block p,
.footer-grid p,
.footer-grid a {
    color: rgba(255, 255, 255, 0.82);
}

.footer-grid a:hover {
    color: #fff;
}

.centered-footer-grid {
    text-align: center;
}

.footer-grid-original {
    text-align: left;
}

.booking-section-title,
.sidebar-title,
.badge {
    font-family: var(--font-playfair), ui-serif, Georgia, serif;
}

.field-grid .field,
.admin-form .field {
    min-width: 0;
}

.section.alt,
.section-alt-cleaning {
    background: rgba(255, 255, 255, 0.34);
}

.contact-section-content .section-header {
    margin-bottom: 24px;
}

.contact-card-overlay > div:first-child {
    text-align: center;
}

.contact-card-overlay {
    padding: 24px;
}

.contact-card-overlay .actions {
    justify-content: center;
}

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

.footer-grid-original .footer-brand-block {
    max-width: 380px;
}

.footer-grid-original .brand img {
    filter: none;
}

.footer-grid-original .footer-brand {
    margin-bottom: 12px;
}

.footer-grid-original .footer-socials a {
    border-color: rgba(255, 255, 255, 0.12);
}

.footer-grid-original .footer-socials svg {
    stroke-width: 1.7;
}

.footer-grid-original .footer-bottom {
    grid-column: 1 / -1;
}

@media (max-width: 1100px) {
    .grid-2,
    .footer-grid,
    .footer-grid-original {
        grid-template-columns: 1fr;
    }

    .admin-shell {
        grid-template-columns: 236px 1fr;
    }

    .contact-card-overlay,
    .booking-background-card,
    .booking-form-card {
        width: 100%;
    }
}

@media (max-width: 860px) {
    .section {
        padding: 68px 0;
    }

    .hero {
        min-height: 72vh;
    }

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

    .field-grid,
    .date-time-grid,
    .service-tile-grid {
        grid-template-columns: 1fr;
    }

    .contact-section {
        min-height: 500px;
        padding: 72px 0 80px;
    }
}

@media (max-width: 900px) {
    .container,
    .topbar .container,
    .topbar-inner {
        width: min(100% - 20px, 1180px);
    }

    .topbar .container {
        gap: 12px;
    }

    .admin-page .page-back-link-desktop {
        display: none !important;
    }

    .admin-page .admin-shell {
        grid-template-columns: 1fr;
        padding-bottom: 118px;
    }

    .admin-dashboard .topbar {
        display: none;
    }

    .admin-page .sidebar {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        top: auto;
        z-index: 60;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        padding: 10px;
        border-radius: 22px;
        align-items: stretch;
        box-shadow: 0 18px 40px rgba(6, 11, 18, 0.42);
        height: auto;
        overflow: visible;
    }

    .admin-page .sidebar-logo,
    .admin-page .sidebar-brand,
    .admin-page .sidebar-title,
    .admin-page .kicker,
    .admin-page .sidebar-logout {
        display: none;
    }

    .admin-dashboard .mobile-logout-row {
        display: flex !important;
        justify-content: flex-start;
        align-items: center;
        gap: 8px;
        margin-bottom: 8px;
    }

    .admin-dashboard .mobile-logout-row .mobile-logout-right {
        margin-left: auto;
    }

    .admin-dashboard .mobile-logout-row .mobile-logout {
        min-width: 94px;
        justify-content: center;
    }

    .admin-dashboard .sidebar .sidebar-logout {
        display: none !important;
    }

    .mobile-logout {
        min-height: 36px;
        padding-inline: 12px;
        font-size: 0.8rem;
    }

    .admin-page .sidebar a {
        min-height: 66px;
        grid-template-columns: 1fr;
        align-content: center;
        justify-items: center;
        text-align: center;
        padding: 10px 8px;
        border-radius: 16px;
        font-size: 0.84rem;
        line-height: 1.1;
    }

    .admin-page .sidebar-icon {
        width: 20px;
        height: 20px;
        color: #fff;
    }

    .admin-page .sidebar-icon svg {
        width: 20px;
        height: 20px;
    }

    .admin-page .sidebar-label {
        font-size: 0.74rem;
        font-weight: 700;
    }

    .admin-auth .form-card {
        padding: 26px 20px;
    }

    .admin-auth .auth-brand img {
        height: 48px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .topbar--top .nav-toggle,
    .topbar--scrolled .nav-toggle,
    .nav-toggle {
        color: var(--navy);
        border-color: rgba(15, 26, 40, 0.18);
        background: rgba(255, 255, 255, 0.94);
    }

    .nav {
        position: absolute;
        top: calc(100% + 12px);
        right: 0;
        display: none;
        flex-direction: column;
        gap: 10px;
        min-width: 220px;
        padding: 14px;
        border-radius: 20px;
        background: rgba(9, 17, 31, 0.92);
        color: #fff;
        box-shadow: var(--shadow-heavy);
    }

    .topbar.nav-open .nav {
        display: flex;
    }

    .nav a,
    .nav-cta {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

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

    .date-time-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .service-tile-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    .service-tile,
    .icon-field-card {
        padding: 12px;
        border-radius: 16px;
    }

    .service-icon svg,
    .icon-field-icon svg {
        width: 20px;
        height: 20px;
    }

    .service-label {
        font-size: clamp(0.56rem, 10.5cqw, 0.72rem);
        line-height: 1.15;
    }

    .icon-field-button {
        width: 56px;
        height: 56px;
    }

    .icon-field-label {
        font-size: 0.72rem;
        letter-spacing: 0.1em;
    }

    .mobile-lang-switcher {
        display: inline-flex;
        justify-content: center;
        width: 100%;
        padding-top: 8px;
        margin-top: 2px;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .lang-switcher:not(.mobile-lang-switcher) {
        display: none;
    }

    .cleanpro-modal {
        padding: 14px;
    }

    .cleanpro-modal__panel {
        padding: 18px;
        border-radius: 18px;
    }

    .order-item--scheduled .order-actions-split,
    .order-item--scheduled .order-actions-left,
    .order-item--scheduled .order-actions-right {
        gap: 6px;
    }

    .order-item--scheduled .order-actions {
        flex-wrap: nowrap;
    }

    .order-item--scheduled .order-actions-split {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 6px;
        width: 100%;
    }

    .order-item--scheduled .order-actions-left,
    .order-item--scheduled .order-actions-right {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        min-width: 0;
    }

    .order-item--scheduled .order-actions-right {
        margin-left: 0;
    }

    .order-item--scheduled .order-actions .btn {
        min-height: 36px;
        width: 100%;
        padding: 7px 6px;
        font-size: 0.68rem;
        white-space: nowrap;
        letter-spacing: 0;
    }

    .order-item--scheduled .order-actions .btn-icon {
        width: 12px;
        height: 12px;
        margin-right: 3px;
    }

    .order-item--scheduled .order-actions .btn-icon svg {
        width: 12px;
        height: 12px;
    }

    .icon-field-value {
        font-size: 0.7rem;
    }

    .print-meta-grid {
        grid-template-columns: 1fr;
    }

    .order-meta {
        grid-template-columns: 1fr;
    }

    .nav a,
    .nav-cta,
    .mobile-lang-switcher,
    .mobile-lang-switcher a {
        color: #fff;
    }

    .nav a.active,
    .nav a[aria-current="page"] {
        color: #fff;
    }

    .nav a.active::after,
    .nav a[aria-current="page"]::after {
        background: #fff;
        box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.12);
    }

    .lang-switcher a.active {
        color: #fff;
    }

    .lang-switcher span {
        opacity: 0.7;
    }

    .hero h1 {
        font-size: clamp(2.45rem, 11vw, 3.7rem);
    }

    .hero p {
        font-size: 0.98rem;
    }

    .section-title,
    .page-title {
        font-size: clamp(1.9rem, 7.2vw, 2.8rem);
    }

    .about-panel .card-title {
        font-size: 1.7rem;
    }

    .contact-section-header .section-title {
        font-size: clamp(2rem, 8vw, 2.9rem);
    }

    .contact-card-overlay {
        padding: 18px;
    }

    .booking-background-card,
    .booking-form-card,
    .admin-card,
    .order-item,
    .panel,
    .card,
    .form-card {
        padding: 20px;
    }
}

@media (max-width: 700px) {
    .admin-page {
        font-size: 14px;
    }

    .admin-page .page-title {
        font-size: clamp(1.45rem, 7.2vw, 1.9rem);
    }

    .admin-page .card-heading {
        font-size: clamp(1.25rem, 6vw, 1.6rem);
    }

    .admin-page .muted,
    .admin-page .order-meta span,
    .admin-page .detail-grid span,
    .admin-page .work-entry-row-main {
        font-size: 0.88rem;
    }

    .admin-page .schedule-cell {
        font-size: 0.78rem;
    }

    .admin-page .work-entry-table-head,
    .admin-page .schedule-table-head {
        font-size: 0.72rem;
        letter-spacing: 0.04em;
    }

    .admin-page .work-entry-btn,
    .admin-page .schedule-cell .btn,
    .admin-page .detail-page-actions .btn {
        font-size: 0.72rem !important;
    }

    .admin-page .cleanpro-modal__title {
        font-size: 1.2rem;
    }

    .admin-page .cleanpro-modal__subtitle {
        font-size: 0.88rem;
    }

    .admin-page .cleanpro-modal__body input,
    .admin-page .cleanpro-modal__body textarea,
    .admin-page .cleanpro-modal__body select {
        font-size: 0.9rem;
    }
}

@media (max-width: 420px) {
    .admin-page .work-entry-table-head,
    .admin-page .schedule-table-head {
        font-size: 0.68rem;
        letter-spacing: 0.03em;
    }

    .admin-page .work-entry-row-main,
    .admin-page .detail-grid span {
        font-size: 0.84rem;
    }

    .admin-page .schedule-cell {
        font-size: 0.7rem;
    }
}

@media print {
    .no-print,
    .topbar,
    .footer {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }

    .print-page {
        padding: 0;
    }
}

.premium-home {
    overflow: clip;
}

.home-page .premium-hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    align-items: center;
    background: #0f1b2d;
}

.home-page .premium-hero .hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.home-page .premium-hero .hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    animation: heroZoom 16s ease-out forwards;
}

.home-page .premium-hero .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(115deg, rgba(11, 19, 32, 0.84), rgba(11, 19, 32, 0.52)),
        radial-gradient(circle at 8% 12%, rgba(200, 154, 61, 0.32), transparent 44%);
}

.home-page .premium-hero .hero-content {
    z-index: 2;
    max-width: 860px;
    padding: 140px 0 110px;
}

.home-page .premium-hero .kicker {
    color: #f8e0ac;
    letter-spacing: 0.18em;
}

.home-page .premium-hero h1 {
    margin: 14px 0 18px;
    font-family: var(--font-playfair), Georgia, serif;
    font-size: clamp(3rem, 8vw, 6.1rem);
    line-height: 0.95;
    letter-spacing: -0.02em;
}

.home-page .premium-hero .hero-title-premium {
    margin: 16px 0 20px;
    line-height: 1;
    letter-spacing: 0;
}

.home-page .premium-hero .hero-title-premium span {
    display: block;
}

.home-page .premium-hero .hero-title-script {
    font-family: 'Great Vibes', 'Brush Script MT', cursive;
    font-size: clamp(2.8rem, 6.2vw, 6rem);
    font-weight: 400;
    color: #b07a2e;
    line-height: 0.92;
    letter-spacing: 0;
    text-shadow: 0 6px 18px rgba(15, 27, 45, 0.26);
}

.home-page .premium-hero .hero-title-strong {
    margin-top: 8px;
    font-family: var(--font-sans);
    font-size: clamp(2rem, 6.2vw, 4.8rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #ffffff;
    line-height: 0.94;
    white-space: nowrap;
}

.home-page .premium-hero p {
    margin: 0 auto 34px;
    max-width: 700px;
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.548);
}

.home-page .premium-hero p strong {
    color: rgba(255, 255, 255, 0.459);
}

.home-page .topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.home-page .topbar--top {
    background: rgba(15, 27, 45, 0.06) !important;
    border-bottom-color: transparent !important;
}

.home-page .topbar--scrolled {
    background: rgba(15, 27, 45, 0.95) !important;
    border-bottom-color: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(12px) !important;
}

.home-page .topbar--scrolled .nav,
.home-page .topbar--scrolled .nav a,
.home-page .topbar--scrolled .brand,
.home-page .topbar--scrolled .lang-switcher {
    color: #f3ede2;
}

.home-page .topbar--scrolled .nav a.active,
.home-page .topbar--scrolled .nav a[aria-current="page"],
.home-page .topbar--scrolled .nav a:hover {
    color: #fff;
}

.home-page .topbar--scrolled .nav a.active::after,
.home-page .topbar--scrolled .nav a[aria-current="page"]::after {
    background: var(--gold);
    box-shadow: 0 0 0 4px rgba(200, 154, 61, 0.18);
}

.home-page .topbar--scrolled .lang-switcher a.active {
    color: #fff;
}

.home-page .topbar--scrolled .brand img {
    filter: none;
}

.home-page .btn {
    min-height: 52px;
    padding: 13px 24px;
    border-radius: 999px;
    font-family: var(--font-sans);
    font-weight: 600;
}

.home-page .btn-primary {
    background: var(--gold);
    color: #131313;
    box-shadow: 0 16px 30px rgba(200, 154, 61, 0.34);
}

.home-page .btn-primary:hover {
    background: #b6862d;
}

.home-page .btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.46);
    color: #fff;
}

.home-page .premium-section {
    padding: 100px 0;
}

.home-page .section-header {
    margin-bottom: 44px;
}

.home-page .section-title {
    font-size: clamp(2.2rem, 5.2vw, 4rem);
    letter-spacing: -0.01em;
}

.home-page .section-header .kicker::after {
    content: '';
    display: block;
    width: 74px;
    height: 3px;
    margin: 14px auto 0;
    border-radius: 999px;
    background: var(--gold);
}

.trust-grid,
.services-grid,
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.trust-card,
.service-card,
.testimonial-card,
.cta-card {
    border-radius: 22px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 16px 36px rgba(15, 27, 45, 0.08);
}

.trust-card {
    padding: 30px;
}

.trust-card h3,
.service-card h3,
.process-step h3,
.city-card h3,
.cta-card h2,
.testimonial-card .author {
    margin: 0;
    font-family: var(--font-playfair), Georgia, serif;
}

.trust-card h3 {
    font-size: 1.75rem;
    margin-bottom: 10px;
}

.trust-card p,
.service-card li,
.testimonial-card .quote,
.cta-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.service-card {
    padding: 28px;
    display: grid;
    gap: 14px;
}

#usluge .services-grid {
    width: min(860px, 100%);
    margin: 0 auto;
    grid-template-columns: 1fr;
    gap: 10px;
}

#usluge .service-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 52px;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid #dfd3bf;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: none;
}

#usluge .service-card::before {
    content: '\2713';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid rgba(188, 138, 53, 0.35);
    background: rgba(200, 154, 61, 0.12);
    color: #b07a2e;
    display: grid;
    place-items: center;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
}

#usluge .service-card-icon {
    display: none;
}

#usluge .service-card h3 {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 1.02rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0;
    white-space: nowrap;
    color: #20242c;
}

.service-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--gold);
    border: 1px solid rgba(200, 154, 61, 0.42);
    background: rgba(200, 154, 61, 0.08);
    font-weight: 700;
}

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

.service-card ul {
    margin: 0;
    padding-left: 20px;
    display: grid;
    gap: 8px;
}

.why-section {
    position: relative;
    background: #f6eee2;
    color: #1d1f22;
}

.why-section .section-title {
    color: #121722;
}

.why-grid {
    width: min(860px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.why-item {
    margin: 0;
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 18px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(176, 122, 46, 0.42);
}

.why-item:first-child {
    border-top: 1px solid rgba(176, 122, 46, 0.42);
}

.why-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, #bb7f2d, #d3a14a);
}

.why-icon svg {
    width: 36px;
    height: 36px;
    stroke: #fff;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.why-copy h3 {
    margin: 0 0 6px;
    font-family: var(--font-sans);
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #121722;
}

.why-copy p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.45;
    color: #2f3035;
}

#gradovi .cities-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(320px, 460px));
    gap: 24px;
    justify-content: center;
    max-width: 980px;
    width: 100%;
    margin-inline: auto;
}

#gradovi .city-card {
    min-height: 250px;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
    background: #102136;
}

#gradovi .city-card--plain {
    background: linear-gradient(145deg, #102136, #1b2d48);
}

#gradovi .city-card--plain::before {
    background:
        radial-gradient(circle at 18% 18%, rgba(214, 170, 80, 0.34), transparent 38%),
        radial-gradient(circle at 84% 26%, rgba(255, 255, 255, 0.1), transparent 26%),
        linear-gradient(145deg, #162845, #0d1726);
}

#gradovi .city-card--plain::after {
    background: linear-gradient(180deg, rgba(15, 27, 45, 0.12), rgba(15, 27, 45, 0.82));
}

.city-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--city-image) center/cover no-repeat;
    transform: scale(1.06);
    transition: transform 0.45s ease;
}

.city-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 27, 45, 0.16), rgba(15, 27, 45, 0.8));
}

.city-card h3 {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 1.6rem;
}

.city-card:hover::before {
    transform: scale(1.14);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.process-step {
    position: relative;
    border-radius: 20px;
    padding: 24px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 14px 30px rgba(15, 27, 45, 0.08);
}

.process-step span {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
    border-radius: 50%;
    color: #fff;
    background: var(--gold);
    font-weight: 700;
}

.process-step h3 {
    font-size: 1.42rem;
}

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

.testimonial-card {
    padding: 28px;
}

.testimonial-card .quote {
    font-size: 1.03rem;
    min-height: 70px;
}

.testimonial-card .stars {
    margin: 14px 0;
    color: var(--gold);
    letter-spacing: 0.08em;
}

.testimonial-card .author {
    font-size: 1.4rem;
    color: var(--navy);
}

.testimonial-card .city {
    margin: 6px 0 0;
    color: var(--muted);
}

.cta-section {
    padding-top: 30px;
}

.cta-card {
    padding: 48px;
    text-align: center;
    background:
        linear-gradient(155deg, rgba(15, 27, 45, 0.97), rgba(15, 27, 45, 0.9)),
        radial-gradient(circle at top left, rgba(200, 154, 61, 0.34), transparent 56%);
    border-color: rgba(200, 154, 61, 0.34);
}

.cta-card h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: #fff;
}

.cta-card p {
    margin: 12px auto 24px;
    max-width: 620px;
    color: rgba(255, 255, 255, 0.84);
}

.footer {
    background: #0f1b2d;
}

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

.premium-footer-grid h4 {
    font-size: 1.12rem;
    letter-spacing: 0.08em;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes heroZoom {
    from {
        transform: scale(1.11);
    }

    to {
        transform: scale(1.02);
    }
}

@media (max-width: 1100px) {
    .trust-grid,
    .services-grid,
    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #gradovi .cities-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 760px;
    }

    .premium-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .home-page .premium-hero .hero-content {
        padding: 130px 0 90px;
    }

    .home-page .premium-hero .hero-title-script {
        font-size: clamp(2.5rem, 12vw, 3.8rem);
    }

    .home-page .premium-hero .hero-title-strong {
        font-size: clamp(1.9rem, 10.5vw, 3.6rem);
        letter-spacing: 0.015em;
    }

    .home-page .premium-section {
        padding: 78px 0;
    }

    .services-grid,
    .testimonials-grid,
    .trust-grid,
    .process-grid,
    #gradovi .cities-grid,
    .premium-footer-grid {
        grid-template-columns: 1fr;
    }

    #usluge .service-card {
        min-height: 48px;
        padding: 10px 14px;
    }

    #usluge .service-card h3 {
        font-size: 0.94rem;
    }

    .why-item {
        grid-template-columns: 64px 1fr;
        gap: 14px;
    }

    .why-icon {
        width: 54px;
        height: 54px;
    }

    .why-icon svg {
        width: 29px;
        height: 29px;
    }

    .why-copy h3 {
        font-size: 1.8rem;
    }

    .why-copy p {
        font-size: 1.02rem;
    }

    .city-card {
        min-height: 210px;
    }

    .cta-card {
        padding: 34px 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    [data-reveal],
    .city-card::before,
    .home-page .premium-hero .hero-media img {
        transition: none !important;
        animation: none !important;
        transform: none !important;
    }

    [data-reveal] {
        opacity: 1;
    }
}

.booking-page-premium {
    background:
        radial-gradient(circle at top left, rgba(200, 154, 61, 0.14), transparent 28%),
        radial-gradient(circle at top right, rgba(15, 27, 45, 0.08), transparent 30%),
        #f8f4ec;
    color: #2d2d2d;
}

.booking-page-premium .topbar--scrolled {
    background: rgba(15, 27, 45, 0.95);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.booking-page-premium .topbar--top {
    background: rgba(15, 27, 45, 0.95) !important;
    border-bottom-color: rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 10px 24px rgba(15, 26, 40, 0.18) !important;
    backdrop-filter: blur(18px) !important;
}

.booking-page-premium .topbar--scrolled .nav,
.booking-page-premium .topbar--scrolled .nav a,
.booking-page-premium .topbar--scrolled .brand,
.booking-page-premium .topbar--scrolled .lang-switcher {
    color: #f4ecdc;
}

.booking-page-premium .topbar--scrolled .brand img {
    filter: none;
}

.booking-page-premium .topbar--top .nav,
.booking-page-premium .topbar--top .nav a,
.booking-page-premium .topbar--top .brand,
.booking-page-premium .topbar--top .lang-switcher,
.booking-page-premium .topbar--top .lang-switcher a {
    color: #f4ecdc;
}

.booking-page-premium .topbar--top .nav a.active,
.booking-page-premium .topbar--top .nav a[aria-current="page"],
.booking-page-premium .topbar--top .nav a:hover {
    color: #fff;
}

.booking-page-premium .topbar--top .nav a.active::after,
.booking-page-premium .topbar--top .nav a[aria-current="page"]::after {
    background: #c89a3d;
    box-shadow: 0 0 0 4px rgba(200, 154, 61, 0.14);
}

.booking-page-premium .topbar--scrolled .lang-switcher a.active,
.booking-page-premium .topbar.nav-open .lang-switcher a.active {
    color: #f8e0ac;
}

.booking-page-premium .topbar--top .lang-switcher a.active {
    color: #f8e0ac;
}

.booking-wizard-section {
    padding-top: 130px;
    padding-bottom: 90px;
}

.booking-wizard-shell {
    width: min(980px, 100%);
}

.booking-wizard-card {
    border-radius: 26px;
    border: 1px solid #e8ded0;
    background: #fff;
    box-shadow: 0 28px 58px rgba(15, 27, 45, 0.12);
    padding: 32px;
}

.booking-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
    flex-wrap: wrap;
}

.booking-progress-step {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #808080;
}

.booking-progress-index {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    border: 1px solid #d8c7a9;
    background: #faf6ee;
    font-weight: 600;
}

.booking-progress-label {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    font-weight: 600;
}

.booking-progress-step.is-current,
.booking-progress-step.is-complete {
    color: #0f1b2d;
}

.booking-progress-step.is-current .booking-progress-index,
.booking-progress-step.is-complete .booking-progress-index {
    border-color: rgba(200, 154, 61, 0.64);
    background: rgba(200, 154, 61, 0.14);
    color: #b6862d;
    box-shadow: 0 0 0 6px rgba(200, 154, 61, 0.12);
}

.booking-progress-sep {
    color: rgba(15, 27, 45, 0.48);
}

.booking-step {
    display: none;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.32s ease, transform 0.32s ease;
}

.booking-step.is-active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.booking-step-header .kicker {
    color: #c89a3d;
}

.booking-step-header .page-title {
    margin-top: 8px;
    margin-bottom: 8px;
}

.booking-step-header .section-subtitle {
    max-width: 620px;
}

.wizard-services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.wizard-service-card {
    text-align: center;
    border: 1px solid #e9dfd2;
    background: linear-gradient(180deg, #fffdf9, #fcf7ef);
    border-radius: 14px;
    padding: 14px 16px;
    box-shadow: 0 6px 14px rgba(15, 27, 45, 0.06);
    cursor: pointer;
    min-height: 94px;
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 8px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.wizard-service-card:hover {
    transform: translateY(-2px);
    border-color: rgba(200, 154, 61, 0.62);
    background: linear-gradient(180deg, #fffdfa, #fbf3e6);
    box-shadow: 0 10px 20px rgba(15, 27, 45, 0.09);
}

.wizard-service-card.is-selected {
    border-color: rgba(200, 154, 61, 0.96);
    background: linear-gradient(180deg, #fff8ea, #fdf1da);
    box-shadow: 0 0 0 3px rgba(200, 154, 61, 0.18), 0 12px 22px rgba(15, 27, 45, 0.08);
}

.wizard-service-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    border: 1px solid rgba(200, 154, 61, 0.34);
    background: rgba(200, 154, 61, 0.08);
    color: #c89a3d;
    display: inline-grid;
    place-items: center;
}

.wizard-service-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.wizard-service-card h3 {
    margin: 2px 0 2px;
    color: #0f1b2d;
    font-size: 1.08rem;
    font-family: var(--font-sans);
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.35;
}

.wizard-service-card p {
    margin: 0;
    color: #6f6f6f;
    line-height: 1.35;
    font-size: 0.82rem;
    max-width: 36ch;
}

.booking-step-actions {
    margin-top: 26px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.booking-step-actions .btn[disabled] {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
}

.wizard-form-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.wizard-form-grid .field {
    display: grid;
    gap: 8px;
}

.wizard-form-grid .field label {
    color: #2e3950;
    font-size: 0.9rem;
    font-weight: 500;
}

.wizard-form-grid .field-full {
    grid-column: 1 / -1;
}

.wizard-date-time-wrap {
    margin-top: 2px;
}

.booking-section-title-wizard {
    margin-bottom: 12px;
    text-align: center;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #6f7f93;
}

.wizard-date-time-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.booking-page-premium .wizard-picker-card {
    border-color: #d9c8af;
    background: linear-gradient(180deg, #f9f3e8, #f4ead8);
    box-shadow: 0 12px 24px rgba(15, 27, 45, 0.09);
}

.booking-page-premium .wizard-picker-card .icon-field-visual {
    color: #0f1b2d;
}

.booking-page-premium .wizard-picker-card .icon-field-icon {
    color: #0f1b2d;
}

.booking-page-premium .wizard-picker-card .icon-field-label {
    color: #0f1b2d;
    font-weight: 700;
}

.booking-page-premium .wizard-picker-card .icon-field-button {
    width: 62px;
    height: 62px;
    border-color: rgba(15, 27, 45, 0.14);
    background: #fff;
    color: #0f1b2d;
    box-shadow: 0 10px 20px rgba(15, 27, 45, 0.13);
}

.booking-page-premium .wizard-picker-card .icon-field-value {
    color: #38475f;
    font-size: 0.84rem;
    font-weight: 600;
}

.wizard-form-grid input,
.wizard-form-grid textarea {
    border-radius: 16px;
    border: 1px solid #e6dbc8;
    background: #fffdfa;
}

.wizard-form-grid input:focus,
.wizard-form-grid textarea:focus {
    border-color: rgba(200, 154, 61, 0.84);
    box-shadow: 0 0 0 4px rgba(200, 154, 61, 0.14);
}

.booking-step-actions-split {
    justify-content: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.booking-step-success {
    text-align: center;
    padding: 30px 0 8px;
}

.booking-success-icon {
    width: 86px;
    height: 86px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #c89a3d;
    border: 1px solid rgba(200, 154, 61, 0.58);
    background: rgba(200, 154, 61, 0.12);
    font-size: 2.1rem;
    box-shadow: 0 0 0 10px rgba(200, 154, 61, 0.09);
}

.booking-step-success h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #0f1b2d;
    font-family: var(--font-playfair), Georgia, serif;
}

.booking-step-success p {
    margin: 12px auto 22px;
    max-width: 560px;
    color: #707070;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .booking-wizard-card {
        padding: 22px;
    }

    .wizard-services-grid,
    .wizard-form-grid {
        grid-template-columns: 1fr;
    }

    .wizard-date-time-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .booking-page-premium .wizard-picker-card {
        padding: 12px;
        border-radius: 16px;
    }

    .booking-page-premium .wizard-picker-card .icon-field-button {
        width: 52px;
        height: 52px;
    }

    .booking-page-premium .wizard-picker-card .icon-field-icon svg {
        width: 20px;
        height: 20px;
    }

    .booking-page-premium .wizard-picker-card .icon-field-label {
        font-size: 0.72rem;
        letter-spacing: 0.1em;
    }

    .booking-page-premium .wizard-picker-card .icon-field-value {
        font-size: 0.72rem;
    }

    .booking-step-actions-split {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .booking-step-actions-split .btn {
        width: auto;
        min-width: 210px;
    }

    .booking-page-premium .topbar--top .nav-toggle {
        appearance: none;
        -webkit-appearance: none;
        background-image: none !important;
        background-color: rgba(255, 255, 255, 0.96) !important;
        color: #0f1b2d !important;
        border-color: rgba(15, 27, 45, 0.22) !important;
        background: rgba(255, 255, 255, 0.96) !important;
    }

    .booking-page-premium .topbar--top .nav-toggle:hover,
    .booking-page-premium .topbar--top .nav-toggle:focus,
    .booking-page-premium .topbar--top .nav-toggle:active {
        color: #0f1b2d !important;
        background: rgba(255, 255, 255, 0.96) !important;
    }

    .booking-page-premium .topbar--scrolled .nav-toggle {
        appearance: none;
        -webkit-appearance: none;
        background-image: none !important;
        background-color: rgba(255, 255, 255, 0.96) !important;
        color: #0f1b2d !important;
        border-color: rgba(15, 27, 45, 0.22) !important;
        background: rgba(255, 255, 255, 0.96) !important;
    }

    .booking-page-premium .topbar--scrolled .nav-toggle:hover,
    .booking-page-premium .topbar--scrolled .nav-toggle:focus,
    .booking-page-premium .topbar--scrolled .nav-toggle:active {
        color: #0f1b2d !important;
        background: rgba(255, 255, 255, 0.96) !important;
    }

    .booking-page-premium .nav {
        background: rgba(15, 27, 45, 0.97);
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.12);
        }

    .booking-page-premium .nav a,
    .booking-page-premium .nav-cta,
    .booking-page-premium .mobile-lang-switcher,
    .booking-page-premium .mobile-lang-switcher a {
        color: #fff;
    }

    .booking-page-premium .topbar.nav-open .nav,
    .booking-page-premium .topbar.nav-open .nav a,
    .booking-page-premium .topbar.nav-open .nav-cta,
    .booking-page-premium .topbar.nav-open .mobile-lang-switcher,
    .booking-page-premium .topbar.nav-open .mobile-lang-switcher a {
        color: #fff !important;
    }

    .booking-page-premium .nav a.active::after,
    .booking-page-premium .nav a[aria-current="page"]::after {
        background: #c89a3d;
        box-shadow: 0 0 0 4px rgba(200, 154, 61, 0.16);
    }
}