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

:root {
    --primary: #b8862f;
    --primary-dark: #97691e;
    --secondary: #d9b45f;
    --accent: #7c6a4d;
    --accent-green: #2f8f6b;
    --accent-amber: #c48a2a;
    --warm-orange: #b5722a;
    --text-dark: #22212b;
    --text-muted: #6b6a75;
    --event-gold: #b8862f;
    --event-gold-soft: #d9b45f;
    --event-ink: #1a1822;
    --event-cream: #faf7f2;
    --surface: #ffffff;
    --border-soft: #ece7dd;
    --shadow-soft: 0 18px 45px rgba(26, 24, 34, 0.08);
    --shadow-hover: 0 26px 60px rgba(26, 24, 34, 0.14);
}

body {
    font-family: 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background: #f7f3ec;
    background-image:
        radial-gradient(1200px 520px at 85% -10%, rgba(217, 180, 95, 0.14), transparent 60%),
        radial-gradient(900px 480px at 0% 8%, rgba(124, 106, 77, 0.08), transparent 55%),
        linear-gradient(180deg, #faf7f1 0%, #f4efe6 100%);
    background-attachment: fixed;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(255, 253, 249, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 6px 28px rgba(26, 24, 34, 0.07);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(184, 134, 47, 0.22);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: nowrap;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(184, 134, 47, 0.35);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--event-ink);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26, 24, 34, 0.35);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.nav-backdrop.show {
    display: block;
    opacity: 1;
}

.nav-brand {
    flex: 0 1 auto;
    min-width: 0;
    max-width: min(100%, 24rem);
}

.nav-brand > a {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    color: inherit;
    min-width: 0;
}

.nav-brand .brand-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 14px;
    background: #fffdf8;
    border: 1px solid rgba(90, 58, 18, 0.2);
    box-shadow: 0 6px 16px rgba(26, 24, 34, 0.1);
}

.nav-brand h1 {
    color: var(--event-ink);
    font-size: clamp(0.78rem, 0.55rem + 0.85vw, 1rem);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0.02em;
    margin: 0;
}

.nav-brand h1::first-letter {
    color: var(--primary);
}

.nav-brand .brand-short {
    display: none;
}

.nav-brand .brand-full {
    display: inline;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.15rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: color 0.25s ease, background 0.25s ease;
    padding: 0.45rem 0.7rem;
    border-radius: 10px;
    position: relative;
}

#websiteLangToggle {
    border: 1.5px solid rgba(184, 134, 47, 0.55);
    color: var(--primary-dark);
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
    margin-inline-start: 0.35rem;
    font-weight: 800;
    min-width: 2.6rem;
    text-align: center;
}

#websiteLangToggle:hover {
    background: var(--primary);
    color: #fff;
}

.nav-lang-original-hidden {
    display: none !important;
}

/* تسجيل الدخول + اللغة في صف واحد */
.nav-auth-item {
    display: flex;
    align-items: center;
}

.nav-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    flex-direction: row;
    flex-wrap: nowrap;
}

.btn-nav-lang {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.6rem;
    height: 38px;
    border: 1.5px solid rgba(184, 134, 47, 0.55);
    background: #fff;
    color: var(--primary-dark);
    border-radius: 999px;
    padding: 0 0.75rem;
    font-weight: 800;
    font-size: 0.85rem;
    cursor: pointer;
    font-family: inherit;
}

.btn-nav-lang:hover {
    background: var(--primary);
    color: #fff;
}

.nav-auth {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.nav-auth.is-logged-in .nav-login-wrap {
    display: none !important;
}

.nav-auth.is-logged-out .nav-user {
    display: none !important;
}

.nav-login-wrap {
    display: flex;
    align-items: center;
}

.btn-nav-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(184, 134, 47, 0.55);
    background: linear-gradient(135deg, #b8862f, #8f6828);
    color: #fff !important;
    border-radius: 999px;
    padding: 0.45rem 1.05rem;
    font-weight: 800;
    font-size: 0.9rem;
    text-decoration: none !important;
    white-space: nowrap;
    font-family: inherit;
    cursor: pointer;
}

.btn-nav-login:hover {
    filter: brightness(1.05);
    color: #fff !important;
    background: linear-gradient(135deg, #c4953c, #9a732e);
}

.btn-nav-login:disabled {
    opacity: 0.7;
    cursor: wait;
}

/* نافذة تسجيل الدخول */
body.hl-auth-open {
    overflow: hidden;
}

.hl-google-modal {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(17, 19, 24, 0.55);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.hl-google-dialog {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: auto;
    background: #fff;
    border-radius: 22px;
    padding: 1.5rem 1.25rem 1.25rem;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.hl-google-close {
    position: absolute;
    top: 0.55rem;
    inset-inline-end: 0.7rem;
    border: 0;
    background: transparent;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: #6b7280;
}

.hl-google-logo {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    margin: 0 auto 0.85rem;
    object-fit: cover;
    display: block;
}

.hl-auth-brand {
    text-align: center;
    margin-bottom: 0.25rem;
}

.hl-auth-brand .hl-google-logo {
    margin-left: auto;
    margin-right: auto;
}

.hl-google-dialog h3 {
    margin: 0 0 0.35rem;
    font-size: 1.25rem;
    text-align: center;
}

.hl-google-dialog p {
    margin: 0 0 1rem;
    color: #6b7280;
    font-size: 0.95rem;
}

.hl-google-btn-box {
    display: flex;
    justify-content: center;
    min-height: 44px;
    margin-bottom: 0.75rem;
}

.hl-google-hint {
    margin: 0.85rem 0 0 !important;
    font-size: 0.78rem !important;
    line-height: 1.45;
}

.hl-auth-dialog {
    max-width: 420px;
    text-align: start;
}

.hl-auth-dialog .hl-google-logo,
.hl-auth-dialog h3,
.hl-auth-lead,
.hl-google-hint,
.hl-auth-google-note {
    text-align: center;
}

.hl-auth-lead {
    margin: 0 0 1rem !important;
}

.hl-auth-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.35rem;
    margin-bottom: 1rem;
    background: #f3efe7;
    padding: 0.3rem;
    border-radius: 14px;
}

.hl-auth-tab {
    border: 0;
    background: transparent;
    border-radius: 10px;
    padding: 0.55rem 0.35rem;
    font-weight: 800;
    font-size: 0.85rem;
    cursor: pointer;
    font-family: inherit;
    color: #6b7280;
}

.hl-auth-tab.is-active {
    background: #fff;
    color: #8f6828;
    box-shadow: 0 2px 8px rgba(26, 24, 34, 0.08);
}

.hl-auth-form {
    display: block;
}

.hl-auth-panel { display: none; }
.hl-auth-panel.is-active { display: grid; gap: 0.75rem; }

.hl-auth-panel label {
    display: grid;
    gap: 0.3rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: #2a2f38;
}

.hl-auth-panel input {
    width: 100%;
    border: 1.5px solid rgba(26, 24, 34, 0.12);
    border-radius: 12px;
    padding: 0.75rem 0.85rem;
    font: inherit;
    box-sizing: border-box;
}

.hl-auth-panel input:focus {
    outline: none;
    border-color: #b8862f;
    box-shadow: 0 0 0 3px rgba(184, 134, 47, 0.15);
}

.hl-optional {
    font-weight: 500;
    color: #6b7280;
    font-size: 0.8rem;
}

.hl-auth-footer {
    display: grid;
    gap: 0.65rem;
    margin-top: 0.85rem;
}

.btn-auth-google {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 1.5px solid #dadce0;
    background: #fff;
    color: #1f1f1f;
    border-radius: 999px;
    padding: 0.8rem 1rem;
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    font-family: inherit;
}

.btn-auth-google:hover {
    background: #fafafa;
    border-color: #c5c8ce;
}

.hl-google-btn-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    opacity: 0 !important;
    pointer-events: none;
}

.hl-auth-submit {
    width: 100%;
    margin-top: 0;
    height: 48px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

.hl-auth-submit[hidden],
.btn-nav-login[hidden],
button.hl-auth-submit[hidden] {
    display: none !important;
}

.hl-auth-msg {
    margin-bottom: 0.75rem;
    padding: 0.65rem 0.8rem;
    border-radius: 12px;
    background: #dcf5e7;
    color: #1f7a4c;
    font-weight: 700;
    font-size: 0.88rem;
}

.hl-auth-msg.is-error {
    background: #fdecea;
    color: #b42318;
}

.hl-auth-google-note {
    margin: 0 0 0.75rem !important;
    color: #6b7280;
    font-size: 0.9rem;
}

.nav-user {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #fff;
    border: 1.5px solid rgba(26, 24, 34, 0.1);
    border-radius: 999px;
    padding: 0.2rem 0.35rem 0.2rem 0.2rem;
    max-width: 100%;
}

.nav-user img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.nav-user span {
    font-size: 0.85rem;
    font-weight: 700;
    max-width: 7rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav-logout {
    border: 0;
    background: #f3e7d2;
    color: #8f6828;
    border-radius: 999px;
    padding: 0.35rem 0.65rem;
    font-weight: 700;
    font-size: 0.78rem;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: var(--primary-dark);
    background: rgba(184, 134, 47, 0.1);
}

.nav-menu a.active {
    color: var(--primary-dark);
    background: rgba(184, 134, 47, 0.14);
}

.nav-menu a.active::after {
    content: "";
    position: absolute;
    left: 0.7rem;
    right: 0.7rem;
    bottom: 0.1rem;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

/* Hero Section */
.hero {
    background-color: #14121b;
    background-image:
        linear-gradient(135deg, rgba(20, 18, 27, 0.78) 0%, rgba(26, 24, 34, 0.7) 45%, rgba(46, 38, 26, 0.82) 100%),
        url("../images/hero-hospitality.jpg");
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 130px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(700px 340px at 50% 0%, rgba(217, 180, 95, 0.22), transparent 65%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary), var(--primary), var(--secondary), transparent);
    opacity: 0.85;
}

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

.hero-title {
    font-size: clamp(2rem, 1.4rem + 2.6vw, 3.15rem);
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 1.1rem;
    animation: fadeInUp 1s;
    text-shadow: 0 4px 30px rgba(0,0,0,0.35);
}

.hero-subtitle {
    font-size: clamp(1.05rem, 0.9rem + 0.7vw, 1.4rem);
    margin-bottom: 2.2rem;
    opacity: 0.92;
    font-weight: 400;
    max-width: 44rem;
    margin-inline: auto;
    animation: fadeInUp 1s 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s 0.4s both;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.9rem 2.1rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 55%, var(--primary-dark) 100%);
    color: #1a1204;
    box-shadow: 0 10px 26px rgba(184, 134, 47, 0.38);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(184, 134, 47, 0.48);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: #fff;
    color: var(--event-ink);
    border-color: #fff;
    transform: translateY(-3px);
}

a.btn-download,
a.btn-download:link,
a.btn-download:visited,
.btn-download {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%) !important;
    color: #1a5d3a !important;
    font-weight: 700;
    border: none !important;
}

a.btn-download:hover,
.btn-download:hover {
    background: linear-gradient(135deg, #38f9d7 0%, #43e97b 100%) !important;
    color: #0d3d24 !important;
    transform: translateY(-3px);
}

a.btn-download span,
a.btn-download .download-icon {
    color: inherit !important;
}

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

/* Features Section */
.features {
    padding: 96px 0;
    background: transparent;
}

.section-title {
    text-align: center;
    font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 2.75rem;
    color: var(--event-ink);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 68px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--surface);
    padding: 0 0 0.85rem;
    border-radius: 18px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    border: 1px solid var(--border-soft);
    position: relative;
    overflow: hidden;
}

.feature-card:has(.feature-icon) {
    padding: 2rem 1.5rem 1.75rem;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    z-index: 2;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(184, 134, 47, 0.35);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 6px 12px rgba(26, 24, 34, 0.12));
}

.feature-card .feature-thumb {
    display: block;
    width: 100%;
    height: 210px;
    object-fit: cover;
    object-position: center;
    margin: 0;
}

.feature-card .feature-copy {
    padding: 0.85rem 1.1rem 0.35rem;
}

.feature-card h3 {
    color: var(--event-ink);
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
    font-weight: 800;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.45;
    margin: 0;
}

/* CTA Section */
.cta {
    background-color: #14121b;
    background-image:
        linear-gradient(135deg, rgba(20, 18, 27, 0.9) 0%, rgba(46, 38, 26, 0.86) 100%),
        radial-gradient(600px 300px at 50% 120%, rgba(217, 180, 95, 0.28), transparent 60%);
    color: #fff;
    padding: 96px 0;
    text-align: center;
    position: relative;
}

.cta h2 {
    font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta .btn-primary {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #201d29 0%, #14121b 100%);
    color: #e9e4d8;
    padding: 56px 0 24px;
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--primary), var(--secondary)) 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--secondary);
    font-weight: 800;
    letter-spacing: 0.01em;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cdc7b8;
    text-decoration: none;
    opacity: 0.9;
    transition: color 0.25s ease, opacity 0.25s ease, padding-right 0.25s ease;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--secondary);
    padding-right: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.8;
}

/* Page Content */
.page-content {
    padding: 64px 0;
    min-height: 60vh;
    background: transparent;
}

.page-title {
    font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.4rem);
    font-weight: 800;
    color: var(--event-ink);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.page-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 64px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.content-section {
    background: var(--surface);
    padding: 2rem;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 2rem;
    border: 1px solid var(--border-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-section:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(184, 134, 47, 0.18);
}

.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
    transition: all 0.3s;
}

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

.field-label {
    display: block;
    margin-bottom: 0.65rem;
    font-weight: 700;
    color: var(--text-dark);
}

.field-hint {
    margin-top: 0.45rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.choice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.65rem;
}

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

.choice-chip {
    display: block;
    cursor: pointer;
    margin: 0;
}

.choice-chip input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.choice-chip span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.75rem 0.9rem;
    text-align: center;
    border: 1.5px solid rgba(26, 24, 34, 0.1);
    border-radius: 14px;
    background: #fff;
    color: var(--event-ink);
    font-weight: 700;
    font-size: 0.92rem;
    line-height: 1.35;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.choice-chip:hover span {
    border-color: rgba(184, 134, 47, 0.45);
    transform: translateY(-1px);
}

.choice-chip input:checked + span {
    border-color: rgba(184, 134, 47, 0.85);
    background: linear-gradient(180deg, #fffaf0 0%, #fff 100%);
    box-shadow: 0 0 0 3px rgba(184, 134, 47, 0.16);
    color: var(--primary-dark);
}

.choice-chip input:focus-visible + span {
    outline: 3px solid rgba(184, 134, 47, 0.35);
    outline-offset: 2px;
}

.form-group label.toggle-card,
label.toggle-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.05rem 1.15rem;
    border: 1.5px solid rgba(184, 134, 47, 0.35);
    border-radius: 16px;
    background: #f3e7d2;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
    cursor: pointer;
    margin: 0 0 0;
    overflow: hidden;
    font-weight: 700;
    color: inherit;
    width: 100%;
    box-sizing: border-box;
}

.form-group label.toggle-card:has(input:checked),
label.toggle-card:has(input:checked) {
    background: #ead6b0;
    border-color: rgba(184, 134, 47, 0.55);
}

.form-group label.toggle-card input[type="checkbox"],
label.toggle-card input[type="checkbox"] {
    position: absolute;
    width: 1px !important;
    max-width: 1px;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
    clip: rect(0, 0, 0, 0);
    overflow: hidden;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
}

.form-group label.toggle-card .toggle-ui,
label.toggle-card .toggle-ui {
    display: block;
    width: 52px;
    height: 30px;
    border-radius: 999px;
    background: #c9c2b4;
    position: relative;
    flex: 0 0 52px;
    margin-top: 0.15rem;
    transition: background 0.2s ease;
    overflow: hidden;
    box-sizing: border-box;
}

.form-group label.toggle-card .toggle-ui::after,
label.toggle-card .toggle-ui::after {
    content: '';
    position: absolute;
    top: 3px;
    inset-inline-start: 3px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(26, 24, 34, 0.18);
    transition: transform 0.2s ease;
}

.form-group label.toggle-card input:checked + .toggle-ui,
label.toggle-card input:checked + .toggle-ui {
    background: var(--primary);
}

.form-group label.toggle-card input:checked + .toggle-ui::after,
label.toggle-card input:checked + .toggle-ui::after {
    transform: translateX(-22px);
}

html[dir="ltr"] .form-group label.toggle-card input:checked + .toggle-ui::after,
html[dir="ltr"] label.toggle-card input:checked + .toggle-ui::after {
    transform: translateX(22px);
}

.form-group label.toggle-card .toggle-copy,
label.toggle-card .toggle-copy {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1 1 auto;
    min-width: 0;
    text-align: start;
}

.form-group label.toggle-card .toggle-copy strong,
label.toggle-card .toggle-copy strong {
    color: var(--event-ink);
    font-size: 1rem;
    line-height: 1.35;
    font-weight: 800;
}

.form-group label.toggle-card .toggle-copy small,
label.toggle-card .toggle-copy small {
    color: #5c564c;
    font-size: 0.85rem;
    line-height: 1.45;
    font-weight: 500;
}

.date-range-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.schedule-block {
    margin-top: 1.75rem;
    padding-top: 1.35rem;
    border-top: 1px solid rgba(26, 24, 34, 0.08);
}

.schedule-block-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--event-ink);
    margin: 0 0 1.1rem;
    position: relative;
    padding-bottom: 0.55rem;
}

.schedule-block-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    inset-inline-start: 0;
    width: 48px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

@media (max-width: 640px) {
    .date-range-grid,
    .choice-grid--2 {
        grid-template-columns: 1fr;
    }

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

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--surface);
    padding: 0 0 2.5rem;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border: 1px solid var(--border-soft);
    overflow: hidden;
}

.pricing-card .pricing-thumb {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 1rem;
}

.pricing-card .pricing-body {
    padding: 0 1.5rem 1.75rem;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.pricing-card.featured {
    border-color: rgba(184, 134, 47, 0.55);
    box-shadow: 0 0 0 3px rgba(184, 134, 47, 0.22), var(--shadow-soft);
    background: linear-gradient(180deg, #fffaf0 0%, #ffffff 100%);
}

.pricing-card.featured:hover {
    transform: translateY(-8px) scale(1.02);
}

.pricing-card h3 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--event-ink);
    margin: 1rem 0;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: right;
}

.pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.pricing-features li:before {
    content: "✓ ";
    color: var(--accent-green);
    font-weight: bold;
    margin-left: 0.5rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Booking page — event / hospitality atmosphere */
.page-booking {
    background: linear-gradient(180deg, #faf7f2 0%, #f0f4ff 35%, #fefce8 100%);
}

.page-content--booking {
    padding-top: 2.25rem;
}

/* Full-bleed hero (imagery: elegant event / reception) */
.booking-hero {
    position: relative;
    min-height: clamp(220px, 32vw, 380px);
    display: flex;
    align-items: flex-end;
    padding: 2.5rem 0 2.75rem;
    margin-bottom: 0;
    overflow: hidden;
}

.booking-hero-bg {
    position: absolute;
    inset: 0;
    background-color: #2d2640;
    background-image: url("../images/hero-hospitality.jpg");
    background-size: cover;
    background-position: center 40%;
}

.booking-hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 12, 28, 0.45) 0%,
        rgba(15, 12, 28, 0.72) 55%,
        rgba(15, 12, 28, 0.88) 100%
    );
}

.booking-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 52rem;
    margin: 0 auto;
    color: #fff;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.booking-hero-kicker {
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.92;
    margin-bottom: 0.65rem;
    font-weight: 700;
    color: rgba(255, 248, 220, 0.95);
}

.booking-hero-title {
    font-size: clamp(1.35rem, 2.8vw, 2.05rem);
    font-weight: 800;
    line-height: 1.35;
    margin: 0 0 0.75rem;
    color: #fff;
}

.booking-hero-lead {
    font-size: clamp(0.95rem, 1.35vw, 1.1rem);
    line-height: 1.65;
    margin: 0;
    opacity: 0.94;
    max-width: 38rem;
    margin-inline: auto;
}

/* Booking wizard */
.booking-page-title-wrap {
    text-align: center;
    margin-bottom: 2rem;
}

.page-title--booking {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.35rem;
}

.booking-page-sub {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.wizard-progress {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.step-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    transition: all 0.3s;
}

.step-dot.active {
    background: var(--primary);
    transform: scale(1.25);
    box-shadow: 0 0 0 4px rgba(184, 134, 47, 0.25);
}

.step-dot.done {
    background: var(--accent-green);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
    gap: 1.35rem;
}

.category-card {
    cursor: pointer;
    display: block;
    margin: 0;
}

.category-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.category-card .card-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    background: #fff;
    border-radius: 20px;
    border: 2px solid rgba(30, 27, 40, 0.08);
    transition: box-shadow 0.35s ease, border-color 0.25s ease, transform 0.3s ease;
    text-align: center;
    min-height: 0;
    justify-content: flex-start;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(30, 27, 60, 0.08);
}

.category-card .card-visual {
    display: block;
    height: clamp(170px, 32vw, 210px);
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.category-card .card-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(15, 12, 28, 0.45) 100%);
    pointer-events: none;
}

.category-card--weddings .card-visual {
    background-image: url("../images/service-weddings.jpg");
    background-position: center 35%;
}

.category-card--halls .card-visual {
    background-image: url("../images/service-halls.jpg");
    background-position: center 45%;
}

.category-card--tables .card-visual {
    background-image: url("../images/service-tables.jpg");
    background-position: center 40%;
}

.category-card--shisha .card-visual {
    background-image: url("../images/service-shisha.jpg");
    background-position: center 50%;
}

.category-card .card-copy {
    padding: 0.7rem 0.95rem 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.category-card .card-inner strong {
    font-size: 1.05rem;
    color: var(--event-ink);
    font-weight: 800;
    line-height: 1.3;
}

.category-card .card-inner small {
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.35;
}

.category-card input:checked + .card-inner {
    border-color: rgba(184, 134, 47, 0.7);
    box-shadow: 0 16px 48px rgba(184, 134, 47, 0.18), 0 0 0 1px rgba(184, 134, 47, 0.35);
    transform: translateY(-2px);
}

.category-card input:checked + .card-inner .card-visual::after {
    background: linear-gradient(180deg, transparent 30%, rgba(184, 134, 47, 0.35) 100%);
}

.category-card:hover .card-inner {
    border-color: rgba(184, 134, 47, 0.45);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(30, 27, 60, 0.12);
}

.category-card:focus-within .card-inner {
    outline: 3px solid rgba(184, 134, 47, 0.4);
    outline-offset: 3px;
}

.booking-detail-panel {
    margin-top: 1rem;
}

.booking-detail-panel[hidden] {
    display: none !important;
}

.checkbox-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.checkbox-row label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-dark);
}

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

.wizard-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.booking-success-box {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-radius: 20px;
    border: 2px solid var(--accent-green);
}

.booking-success-box .ref-code {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin: 1rem 0;
    letter-spacing: 0.05em;
}

.services-mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-link-card {
    display: block;
    padding: 0;
    background: var(--surface);
    border-radius: 16px;
    border: 1px solid var(--border-soft);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.service-link-card:hover {
    transform: translateY(-6px);
    border-color: rgba(184, 134, 47, 0.5);
    box-shadow: var(--shadow-hover);
}

.service-link-card .service-thumb {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
}

.service-link-card .service-copy {
    padding: 0.85rem 1.1rem 1rem;
}

.service-link-card h3 {
    color: var(--primary-dark);
    margin-bottom: 0.35rem;
    font-size: 1.1rem;
    font-weight: 800;
}

.service-link-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.4;
    margin: 0;
}

.booking-history-card h3 {
    color: var(--primary);
    margin-bottom: 0.35rem;
}

.booking-history-meta {
    list-style: none;
    margin-top: 0.75rem;
    padding: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.booking-history-meta li {
    margin-bottom: 0.25rem;
}

.btn-ghost {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-ghost:hover {
    background: rgba(99,102,241,0.08);
}

/* Price summary & payment */
.price-estimate-note {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.55;
    margin-bottom: 1.25rem;
}

.price-summary-box {
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    border: 2px solid rgba(99,102,241,0.2);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
}

.price-line {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    color: var(--text-dark);
}

.price-line-total {
    border-bottom: none;
    margin-top: 0.35rem;
    padding-top: 0.75rem;
    font-size: 1.15rem;
    font-weight: 700;
}

.price-line-total strong {
    font-size: 1.35rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.terms-check-label {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-weight: 600;
    cursor: pointer;
    line-height: 1.45;
}

.terms-check-label input {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.payment-banner {
    max-width: 720px;
    margin: 0 auto 1.25rem;
    padding: 1rem 1.25rem;
    border-radius: 14px;
    text-align: center;
    font-weight: 600;
}

.payment-banner-success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border: 2px solid var(--accent-green);
    color: #065f46;
}

.payment-banner-warn {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid var(--accent-amber);
    color: #92400e;
}

/* Live price (booking wizard) */
.booking-wizard-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
    gap: 1.5rem;
    align-items: start;
    margin-top: 0.5rem;
}

@media (max-width: 900px) {
    .booking-wizard-grid {
        grid-template-columns: 1fr;
    }
    .booking-live-price-aside {
        order: -1;
    }
}

.booking-wizard-col-main {
    min-width: 0;
}

.booking-live-price-aside {
    position: sticky;
    top: 88px;
    padding: 1.25rem 1.35rem;
    border: 2px solid rgba(184, 134, 11, 0.22);
    background: linear-gradient(165deg, #fffefb 0%, #faf8ff 45%, #fff 100%);
    box-shadow: 0 14px 44px rgba(30, 27, 60, 0.1);
    border-radius: 18px;
}

.page-booking .booking-live-price-aside .live-price-heading {
    color: var(--event-ink);
    font-weight: 800;
}

.live-price-heading {
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
    color: var(--primary);
}

.live-price-hint {
    font-size: 0.88rem;
    margin-bottom: 1rem;
    line-height: 1.45;
}

.live-price-placeholder {
    color: var(--text-muted);
    font-size: 0.95rem;
    padding: 1rem 0;
    text-align: center;
    border: 1px dashed #cbd5e1;
    border-radius: 12px;
}

.live-price-line {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.75rem;
    padding: 0.45rem 0;
    font-size: 0.95rem;
    border-bottom: 1px solid #f1f5f9;
}

.live-price-line-total {
    border-bottom: none;
    margin-top: 0.35rem;
    padding-top: 0.65rem;
    font-weight: 700;
    font-size: 1.05rem;
}

.live-price-line-total strong {
    font-size: 1.2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Admin dashboard */
.admin-body {
    font-family: 'Cairo', 'Segoe UI', sans-serif;
}

.admin-login-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.admin-login-card {
    max-width: 420px;
    width: 100%;
}

.admin-topbar {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 2px solid rgba(99,102,241,0.15);
    margin-bottom: 0.5rem;
}

.admin-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 1.5rem;
    padding: 1.5rem 20px 3rem;
    align-items: start;
}

@media (max-width: 900px) {
    .admin-layout {
        grid-template-columns: 1fr;
    }
}

.admin-sidebar .admin-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.5rem 0;
}

.admin-tab {
    display: block;
    width: 100%;
    text-align: right;
    padding: 0.85rem 1rem;
    border: none;
    border-radius: 12px;
    background: transparent;
    font-family: inherit;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    color: var(--text-dark);
    transition: background 0.2s;
}

.admin-tab:hover {
    background: rgba(99,102,241,0.08);
}

.admin-tab.active {
    background: linear-gradient(135deg, rgba(99,102,241,0.18), rgba(236,72,153,0.12));
    color: var(--primary-dark);
}

.admin-table-wrap {
    overflow-x: auto;
    margin-top: 1rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.admin-table th,
.admin-table td {
    padding: 0.75rem 1rem;
    text-align: right;
    border-bottom: 1px solid #f1f5f9;
}

.admin-table th {
    background: #f8fafc;
    font-weight: 700;
    color: var(--primary-dark);
}

.admin-table tr:hover td {
    background: #faf5ff;
}

.admin-flash {
    padding: 0.85rem 1.25rem;
    border-radius: 12px;
    font-weight: 600;
    margin: 0 20px;
}

.admin-flash-ok {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid var(--accent-green);
}

.admin-flash-err {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #f87171;
}

.admin-section h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.15rem;
}

/* Responsive */
@media (max-width: 900px) {
    .navbar {
        padding: 0.65rem 0;
    }

    .navbar .container {
        flex-wrap: nowrap;
        gap: 0.5rem;
    }

    .nav-brand {
        max-width: calc(100% - 56px);
        flex: 1 1 auto;
    }

    .nav-brand .brand-logo {
        width: 44px;
        height: 44px;
        border-radius: 11px;
    }

    .nav-brand h1 {
        font-size: 0.95rem;
        letter-spacing: 0.02em;
        line-height: 1.2;
        overflow: hidden;
    }

    .nav-brand .brand-full {
        display: none;
    }

    .nav-brand .brand-short {
        display: inline;
    }

    .nav-brand .brand-short::first-letter {
        color: var(--primary);
    }

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

    .nav-menu {
        position: fixed;
        top: 0;
        bottom: 0;
        width: min(86vw, 320px);
        max-width: 320px;
        margin: 0;
        padding: 5.5rem 1.1rem 1.5rem;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0.35rem;
        background: rgba(255, 253, 249, 0.98);
        box-shadow: -12px 0 40px rgba(26, 24, 34, 0.16);
        z-index: 999;
        overflow-y: auto;
        transition: transform 0.28s ease;
        inset-inline-end: 0;
        inset-inline-start: auto;
        transform: translateX(110%);
    }

    html[dir="rtl"] .nav-menu {
        transform: translateX(-110%);
        box-shadow: 12px 0 40px rgba(26, 24, 34, 0.16);
    }

    .nav-menu.is-open,
    html[dir="rtl"] .nav-menu.is-open {
        transform: translateX(0);
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        padding: 0.85rem 1rem;
        font-size: 1rem;
        border-radius: 12px;
    }

    #websiteLangToggle {
        margin: 0.75rem 0 0;
        text-align: center;
    }

    .container {
        padding: 0 14px;
    }

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

    .hero-title {
        font-size: clamp(1.45rem, 6vw, 1.9rem);
        line-height: 1.35;
        padding: 0 0.25rem;
    }

    .hero-subtitle {
        font-size: 0.98rem;
        line-height: 1.55;
        padding: 0 0.35rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        width: min(100%, 280px);
        margin-inline: auto;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .section-title,
    .page-title {
        font-size: 1.45rem;
    }

    .features-grid,
    .pricing-grid,
    .services-mini-grid,
    .category-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-link-card .service-thumb,
    .feature-card .feature-thumb,
    .pricing-card .pricing-thumb {
        height: 180px;
    }

    .service-link-card .service-copy,
    .feature-card .feature-copy {
        padding: 0.75rem 0.95rem 0.9rem;
    }

    .category-card .card-visual {
        height: 180px;
    }

    .category-card .card-copy {
        padding: 0.65rem 0.85rem 0.75rem;
    }

    .booking-hero {
        min-height: 210px;
    }

    .booking-hero-title {
        font-size: 1.35rem;
    }

    .booking-hero-lead {
        font-size: 0.92rem;
    }

    .booking-live-price-aside {
        position: static;
        top: auto;
    }

    .wizard-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .wizard-actions .btn {
        width: 100%;
        text-align: center;
    }

    .cta {
        padding: 64px 0;
    }

    .cta .btn-primary {
        animation: none;
        width: min(100%, 280px);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    body.nav-open {
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    .nav-brand h1 {
        font-size: 0.78rem;
        max-width: none;
        -webkit-line-clamp: 1;
        letter-spacing: 0.01em;
    }

    .nav-brand h1::after {
        content: none;
    }

    .nav-brand .brand-logo {
        width: 42px;
        height: 42px;
    }

    .feature-card:has(.feature-icon) {
        padding: 1.35rem 1rem 1.25rem;
    }
}
