/* --- TYPOGRAPHY SYSTEM --- */

body {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Headings = tighter, sharper, more premium */
h1,
h2,
h3,
h4 {
    font-weight: 600;
    letter-spacing: -0.02em;
}


/* Hero title = bold presence */
.hero h1,
.location-hero__overlay h1 {
    font-weight: 700;
    letter-spacing: -0.025em;
}

/* Subtext = lighter + more breathable */
.hero-text,
.section-subtext,
.location-card__description,
.muted-text {
    font-weight: 400;
    letter-spacing: -0.005em;
}

/* Buttons = slightly tighter + cleaner */
.btn {
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* Small UI labels (like region tags) */
.location-card__region,
.eyebrow {
    font-weight: 500;
    letter-spacing: 0.08em;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: "Inter", sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(18, 20, 23, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

/*.main-nav {
    display: flex;
    gap: 1.5rem;
}

.main-nav a {
    color: var(--muted);
}

.main-nav a:hover {
    color: var(--text);
}*/

.hero {
    position: relative;
    padding: 7rem 0 5rem;
    background:
        linear-gradient(rgba(18, 20, 23, 0.45), rgba(18, 20, 23, 0.75)),
        url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}

/* subtle light glow */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%,
            rgba(191, 163, 122, 0.15),
            transparent 60%);
    pointer-events: none;
}

.hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.6rem);
    line-height: 1.05;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
}

.hero-text {
    color: var(--muted);
    max-width: 620px;
    margin-bottom: 2rem;
    font-size: 1.08rem;
    opacity: 0.95;
}

.hero-inner {
    max-width: 760px;
}

.eyebrow {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.82rem;
    margin-bottom: 1rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.4rem;
    border-radius: 999px;
    font-weight: 500;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-2px) scale(1.02);
    border-color: var(--accent);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #d2b48c);
    color: #121417;
    border: none;
    position: relative;
    overflow: hidden;
}

/* glow pulse on hover */
.btn-primary::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.25),
            transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(191, 163, 122, 0.4);
}

.btn-primary:hover::after {
    opacity: 1;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.hero-inner {
    max-width: 720px;
}

.section {
    padding: 4rem 0;
}

.section h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.status-card {
    margin-top: 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    display: inline-flex;
    gap: 0.75rem;
    align-items: center;
}

.site-footer {
    padding: 2rem 0 3rem;
    border-top: 1px solid var(--border);
    color: var(--muted);
    margin-top: 3rem;
}

.page-hero {
    padding: 5rem 0 2rem;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.page-hero--compact {
    padding-top: 5rem;
    padding-bottom: 2rem;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
    margin-bottom: 2rem;
}

.section-subtext {
    color: var(--muted);
    margin-top: 0.5rem;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    padding: 0 1rem;
}

.location-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* soft glow layer */
.location-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left,
            rgba(191, 163, 122, 0.12),
            transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.location-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(191, 163, 122, 0.15);
}

.location-card:hover::before {
    opacity: 1;
}

.location-card__image {
    transition: transform 0.4s ease, filter 0.4s ease;
}

.location-card:hover .location-card__image {
    transform: scale(1.06);
    filter: brightness(1.05);
}

.location-card__image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            transparent 60%,
            rgba(0, 0, 0, 0.35));
}

.location-card__price strong {
    color: var(--accent);
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(191, 163, 122, 0.2);
}

.location-card__image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    background: #0f1114;
    overflow: hidden;
}

.location-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.location-card__placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: var(--muted);
    background:
        linear-gradient(135deg, rgba(191, 163, 122, 0.08), rgba(255, 255, 255, 0.02));
}

.location-card__content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem;
    flex: 1;
}

.location-card__meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.location-card__region {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--accent);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.location-card__title {
    font-size: 1.3rem;
    line-height: 1.2;
}

.location-card__description {
    color: var(--muted);
    font-size: 0.95rem;
    flex: 1;
}

.location-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
    margin-top: auto;
}

.location-card__price {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.location-card__price-label {
    color: var(--muted);
    font-size: 0.85rem;
}

.location-card {
    overflow: hidden;
    /* clips the hover scale within card */
}

.btn-sm {
    padding: 0.75rem 1rem;
    font-size: 0.92rem;
}

.empty-state {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.empty-state p {
    color: var(--muted);
    margin-top: 0.5rem;
}

@media (max-width: 1024px) {
    .locations-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .locations-grid {
        grid-template-columns: 1fr;
    }

    .location-card__footer {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-sm {
        width: 100%;
    }
}

.location-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: end;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.location-hero__media {
    position: absolute;
    inset: 0;
}

.location-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.location-hero__overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 7rem 0 3rem;
    background: linear-gradient(180deg,
            rgba(18, 20, 23, 0.18) 0%,
            rgba(18, 20, 23, 0.42) 35%,
            rgba(18, 20, 23, 0.9) 100%);

}

.location-hero__overlay h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.05;
    margin-bottom: 1rem;
    max-width: 800px;
}

.location-hero__text {
    max-width: 760px;
    color: var(--muted);
    font-size: 1.05rem;
}

.location-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 2rem;
    align-items: start;
}

.location-main {
    min-width: 0;
    /* already there */
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.location-card {
    overflow: hidden;
    /* clips hover */
    will-change: transform;
    /* improves performance */
}

.location-card__content,
.content-card,
.pricing-card {
    min-width: 0;
    /* new */
}

.location-card::before,
.content-card::before,
.pricing-card::before {
    max-width: 100%;
}

.location-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 2rem;
    align-items: start;
}

.location-main {
    min-width: 0;
    max-width: 100%;
    /* new */
}

.content-card,
.pricing-card {
    background: linear-gradient(180deg,
            rgba(191, 163, 122, 0.08),
            rgba(20, 22, 26, 0.95));
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    padding: 1.6rem;
    transition: all 0.25s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.45),
        0 0 25px rgba(191, 163, 122, 0.35),
        0 0 0 1px rgba(191, 163, 122, 0.2);
}

.content-card,
.pricing-card {
    max-width: 100%;
    /* prevents cards from exceeding column width */
}

.content-card h2,
.pricing-card h3 {
    margin-bottom: 1rem;
}

.content-card p {
    color: var(--muted);
}

.detail-block+.detail-block {
    margin-top: 1.25rem;
}

.detail-block h3 {
    margin-bottom: 0.35rem;
    font-size: 1rem;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(191, 163, 122, 0.25);
    background: rgba(191, 163, 122, 0.08);
    font-size: 0.85rem;
    letter-spacing: 0.02em;
}

.location-sidebar {
    position: sticky;

}

.pricing-card__label {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    font-size: 0.82rem;
    margin-bottom: 0.6rem;
}

.pricing-card h2 {
    font-size: 2.4rem;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.pricing-card h2 span {
    font-size: 1rem;
    color: var(--muted);
    margin-left: 0.35rem;
}

.pricing-card__subtext {
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.pricing-card__addons {
    margin-bottom: 1.5rem;
}

.addon-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.addon-item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: start;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.addon-item strong {
    display: block;
    margin-bottom: 0.35rem;
}

.addon-item p,
.muted-text {
    color: var(--muted);
    font-size: 0.92rem;
}

.pricing-card__actions {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.pricing-card__actions .btn {
    width: 100%;
}

@media (max-width: 980px) {
    .location-layout {
        grid-template-columns: 1fr;
    }

    .location-sidebar {
        position: static;
    }
}

.request-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.request-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    border: 1px solid var(--border);
    background: var(--surface-soft);
    color: var(--text);
    border-radius: 14px;
    padding: 0.95rem 1rem;
    font: inherit;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: rgba(191, 163, 122, 0.55);
    box-shadow: 0 0 0 3px rgba(191, 163, 122, 0.12);
}

.addon-selection-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.addon-option {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 1rem;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 18px;
    padding: 1rem;
    cursor: pointer;
}

.addon-option__left {
    display: flex;
    gap: 0.8rem;
    align-items: start;
}

.addon-option__left input {
    margin-top: 0.2rem;
}

.addon-option__left p {
    color: var(--muted);
    font-size: 0.92rem;
    margin-top: 0.25rem;
}

.addon-option__price {
    white-space: nowrap;
    color: var(--accent);
    font-weight: 600;
}

.form-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.summary-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin: 1.5rem 0;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.summary-item span {
    color: var(--muted);
}

.pricing-estimate-box {
    margin-top: 1.5rem;
    border-top: 1px solid var(--border);
    padding-top: 1.25rem;
}

.estimate-amount {
    margin-top: 1rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

/*@media (max-width: 980px) {
    .request-layout {
        grid-template-columns: 1fr;
    }

    .request-sidebar {
        position: static;
    }
} */

@media (max-width: 700px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions .btn {
        width: 100%;
    }

    .addon-option {
        flex-direction: column;
    }
}

.alert {
    border-radius: 18px;
    padding: 1rem 1.2rem;
    margin-bottom: 1.25rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.alert ul {
    margin-top: 0.6rem;
    padding-left: 1.2rem;
}

.alert-error {
    background: rgba(180, 60, 60, 0.12);
    border-color: rgba(220, 80, 80, 0.25);
}

.alert-success {
    background: rgba(70, 130, 90, 0.14);
    border-color: rgba(90, 170, 110, 0.25);
}

.admin-table-wrap {
    overflow-x: auto;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
}

.admin-table th,
.admin-table td {
    padding: 1rem 1.1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}

.admin-table th {
    color: var(--muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: rgba(255, 255, 255, 0.02);
}

.admin-subtext {
    color: var(--muted);
    font-size: 0.88rem;
    margin-top: 0.2rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    border: 1px solid var(--border);
    white-space: nowrap;
}

.status-badge--new {
    background: rgba(191, 163, 122, 0.12);
    color: var(--accent);
}

.status-badge--pending_payment,
.status-badge--pending {
    background: rgba(100, 120, 180, 0.14);
    color: #b8c6ff;
}

.status-badge--paid_pending_confirmation,
.status-badge--paid {
    background: rgba(70, 130, 90, 0.14);
    color: #98ddb0;
}

.status-badge--confirmed {
    background: rgba(70, 130, 90, 0.18);
    color: #98ddb0;
}

.status-badge--declined,
.status-badge--failed {
    background: rgba(180, 60, 60, 0.12);
    color: #ffb0b0;
}

.status-badge--unpaid {
    background: rgba(255, 255, 255, 0.05);
    color: var(--muted);
}

.status-badge--warning {
    background-color: #f0ad4e;
    color: #fff;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.85rem;
    display: inline-block;
}

.status-badge--pending_verification {
    background: rgba(255, 165, 0, 0.14);
    /* light orange background */
    color: #f0ad4e;
    /* warning text color */
    border: 1px solid #f0ad4e;
    /* optional: matches text color for extra definition */
}

.location-card__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    flex-direction: row;
}

/* =========================
   HOW IT WORKS SECTION
========================= */
/* HOW IT WORKS - DOTS ONLY CLEANUP */

/* Container */
.how-steps {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 2rem;
}

/* Step card */
.how-step {
    position: relative;
    padding-top: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

/* Dot at top of each card */
.how-step::before {
    content: "";
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px rgba(191, 163, 122, 0.4);
    z-index: 1;
}

/* Step number below heading */
.how-step__number {
    display: block;
    margin-top: 0.6rem;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--accent);
    opacity: 0.8;
}

/* Step content */
.how-step__content h3 {
    margin: 0;
    margin-bottom: 0.4rem;
    font-size: 1.2rem;
}

.how-step__content p {
    color: var(--muted);
    font-size: 0.95rem;
    max-width: 220px;
    margin: 0 auto;
}

/* Hover effect */
.how-step:hover {
    transform: translateY(-6px);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(191, 163, 122, 0.15);
}

/* RESPONSIVE - Mobile stacked */
@media (max-width: 1100px) {
    .how-steps {
        grid-template-columns: 1fr;
    }

    .how-step__content p {
        max-width: 100%;
    }
}

.taxonomy-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}

.taxonomy-title {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.checkbox-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.checkbox-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
}

.checkbox-pill input {
    margin: 0;
}

@media (max-width: 780px) {
    .taxonomy-grid {
        grid-template-columns: 1fr;
    }
}

.addon-admin-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.addon-admin-item {
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 1rem;
    align-items: start;
}

.addon-admin-toggle {
    display: flex;
    gap: 0.85rem;
    align-items: start;
    cursor: pointer;
}

.addon-admin-toggle input {
    margin-top: 0.25rem;
}

.addon-admin-toggle p {
    color: var(--muted);
    font-size: 0.92rem;
    margin-top: 0.25rem;
}

.addon-admin-price {
    margin: 0;
}

@media (max-width: 780px) {
    .addon-admin-item {
        grid-template-columns: 1fr;
    }
}

.detail-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--border);
}

.detail-row span {
    color: var(--muted);
}

.addon-detail-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.addon-detail-item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: start;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.02);
}

.addon-detail-item p {
    color: var(--muted);
    margin-top: 0.35rem;
    font-size: 0.92rem;
}

.addon-detail-pricing {
    text-align: right;
    white-space: nowrap;
}

.addon-detail-pricing span {
    display: block;
    color: var(--muted);
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

@media (max-width: 700px) {

    .detail-row,
    .addon-detail-item {
        flex-direction: column;
    }

    .addon-detail-pricing {
        text-align: left;
    }
}

.status-action-form {
    margin-top: 1rem;
}

.admin-hero-preview {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #0f1114;
    box-shadow: var(--shadow);
}

.admin-hero-preview__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.admin-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.admin-gallery-card {
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}

.admin-gallery-card__image-wrap {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: #0f1114;
    overflow: hidden;
}

.admin-gallery-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.admin-gallery-card__meta {
    padding: 0.9rem;
}

.admin-gallery-card__meta p {
    color: var(--muted);
    font-size: 0.82rem;
    margin-top: 0.35rem;
    word-break: break-word;
}

@media (max-width: 900px) {
    .admin-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .admin-gallery-grid {
        grid-template-columns: 1fr;
    }
}

.location-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.location-gallery-item {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #0f1114;
}

.location-gallery-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

@media (max-width: 700px) {
    .location-gallery-grid {
        grid-template-columns: 1fr;
    }
}

.admin-gallery-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.85rem;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.dashboard-card {
    padding: 1.4rem;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
}

.dashboard-card h3 {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 0.5rem;
}

.dashboard-value {
    font-size: 1.8rem;
    font-weight: 600;
}

@media (max-width: 900px) {
    .dashboard-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

.admin-actions-box {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
}

.admin-actions-box h3 {
    margin-bottom: 1rem;
}

.admin-actions-box label {
    display: block;
    margin-top: 1rem;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
    color: var(--muted);
}

.admin-actions-box textarea,
.admin-actions-box select {
    width: 100%;
    padding: 0.6rem;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: transparent;
    color: inherit;
}

.pricing-card__actions {
    position: relative;
    z-index: 10;
}


/* Payment Status Badges */
.badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    vertical-align: middle;
}

.badge-unpaid {
    background-color: #ffc107;
    /* Bootstrap warning gold */
    color: #212529;
    transition: background-color 0.2s ease;
}

.badge-unpaid:hover {
    background-color: #e0a800;
    cursor: pointer;
    text-decoration: none;
}

.badge-paid {
    background-color: #28a745;
    /* Green for paid */
    color: #fff;
}

.badge-pending {
    background-color: #17a2b8;
    /* Teal for pending verification */
    color: #fff;
}

/* Highlight row when scrolling */
.highlight-row {
    background-color: #fff3cd;
    /* light yellow */
}

.audit-log-item {
    border-top: 1px solid #eee;
    padding: 0.75rem 0;
}

.audit-log-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.4rem;
}

.audit-log-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.audit-log-values pre {
    background: #f8f8f8;
    padding: 0.5rem;
    border-radius: 6px;
    font-size: 0.75rem;
    overflow-x: auto;
}

.form-fieldset {
    border: 1px solid #ddd;
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.form-fieldset legend {
    font-weight: bold;
    padding: 0 10px;
}



.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}


.content-card:last-of-type {
    margin-bottom: 30px;
    /* add space before buttons */
}

.gold-total.highlighted {
    color: var(--accent);
    /* matches price colors everywhere */
    font-weight: 700;
    font-size: 1.5rem;
    display: block;
    margin-top: 0.5rem;
}


.form-actions .btn {
    flex: 1 1 auto;
    /* lets buttons share width evenly */
    min-width: 150px;
    /* optional: prevent tiny buttons */
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item span {
    display: block;
    font-size: 0.85rem;
    color: #777;
}

.contact-item strong {
    font-size: 1.05rem;
}

/* CONTACT PAGE STYLES */

/* Hero Section */
.page-hero--compact {
    padding: 6rem 0 3rem;
    text-align: center;
}

.page-hero--compact .eyebrow {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 1rem;
}

.page-hero--compact h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.page-hero--compact .hero-text {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Container & Cards */

/* Content Cards */
.content-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
}

.content-card h2 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--text);
}

/* Contact List */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
}

.contact-item span {
    color: var(--muted);
    font-weight: 500;
}

.contact-item a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-item a:hover {
    color: #fff;
    /* brighter accent on hover */
}

/* Muted Text */
.muted-text {
    color: var(--muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}

.location-hero__overlay h1 {
    letter-spacing: 0.02em;
}

.location-hero__text {
    max-width: 680px;
}

.addon-item {
    transition: all 0.2s ease;
}

.addon-item:hover {
    transform: translateY(-2px);
    border-color: rgba(191, 163, 122, 0.25);
}

.pricing-card {
    background: linear-gradient(180deg,
            rgba(191, 163, 122, 0.08),
            rgba(20, 22, 26, 0.95));
}

.pricing-card h2 {
    text-shadow: 0 0 12px rgba(191, 163, 122, 0.2);
}

.form-group input,
.form-group textarea,
.form-group select {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 0.9rem 1rem;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(191, 163, 122, 0.15);
}

.addon-option:hover {
    transform: translateY(-2px);
    border-color: rgba(191, 163, 122, 0.25);
    background: rgba(255, 255, 255, 0.04);
}

.gold-total {
    font-size: 1.6rem;
    letter-spacing: 0.02em;
    text-shadow: 0 0 12px rgba(191, 163, 122, 0.25);
}

.glow-accent {
    box-shadow: 0 0 20px rgba(191, 163, 122, 0.25);
}


.tag {
    transition: all 0.2s ease;
}

.tag:hover {
    transform: translateY(-2px);
    background: rgba(191, 163, 122, 0.15);
    border-color: var(--accent);
}

/* About Page Hero */
.page-hero--compact {
    padding: 6rem 0 3rem;
    text-align: center;
}

.page-hero--compact .eyebrow {
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.page-hero--compact h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-hero--compact .hero-text {
    font-size: 1.05rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    color: var(--muted);
}

/* About Page Content Cards */
.section .content-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.section .content-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.section .content-card h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text);
    letter-spacing: 0.02em;
}

.section .content-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--muted);
    margin-bottom: 0.8rem;
}

/* Responsive */
@media (max-width: 1100px) {
    .section .content-card {
        padding: 1.6rem;
    }
}

@media (max-width: 600px) {
    .page-hero--compact h1 {
        font-size: 2rem;
    }

    .section .content-card {
        padding: 1.2rem;
        margin-bottom: 1.5rem;
    }
}

/* Soft Shadow Separators for About Page Cards */
.section .content-card+.content-card::before {
    content: "";
    display: block;
    height: 1px;
    /* thin separator */
    margin: 2rem 0;
    background: linear-gradient(to right,
            rgba(191, 163, 122, 0.1),
            rgba(191, 163, 122, 0.3),
            rgba(191, 163, 122, 0.1));
}

.section .content-card:hover {
    box-shadow: 0 10px 30px rgba(191, 163, 122, 0.15);
}

.about-page .section .container {
    max-width: 800px;
    margin: 0 auto;
}

/* Request Page Sidebar Pricing Card Fix */
.request-sidebar .pricing-card {
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.35),
        0 0 25px rgba(191, 163, 122, 0.35),
        0 0 0 1px rgba(191, 163, 122, 0.2);
}

.request-sidebar .pricing-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.45),
        0 0 25px rgba(191, 163, 122, 0.35),
        0 0 0 1px rgba(191, 163, 122, 0.2);
}

.btn-outline {
    border: 1px solid var(--accent);
    color: var(--accent);
    background: transparent;
}

.btn-outline:hover {
    background: var(--accent);
    color: #000;
}

.lightbox {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox.hidden {
    display: none;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85%;
    border-radius: 12px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
}

/* all mobile fixes here */
@media (max-width: 768px) {
    .location-layout {
        grid-template-columns: 1fr;
    }

    .location-sidebar {
        order: 2;
    }

    .location-main {
        order: 1;
    }
}

@media (max-width: 768px) {
    .pricing-card {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: flex !important;
        flex-wrap: wrap;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 40px 20px;
    }

    .content-card {
        padding: 16px;
    }

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 5rem 0 3rem;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.15;
    }

    .hero-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {

    body {
        font-size: 15px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .section {
        padding: 3rem 0;
    }
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* =========================
   MOBILE NAVIGATION (FINAL CLEAN VERSION)
========================= */

.nav-toggle {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
}

/* Desktop nav */
.main-nav {
    display: flex;
    gap: 1.5rem;
}

/* MOBILE */
@media (max-width: 768px) {

    .header-inner {
        position: relative;
        justify-content: space-between;
        align-items: center;
    }

    .nav-toggle {
        display: block;
        z-index: 1001;
    }

    .main-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--surface);
        border: 1px solid var(--border);
        border-top: none;
        padding: 1rem;
        z-index: 1000;
        box-shadow: var(--shadow);
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border);
    }

    .main-nav a:last-child {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        position: relative;
        gap: 0;
    }
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

.request-layout {
    max-width: 100%;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* =========================
   REQUEST PAGE FINAL FIX
========================= */
.request-layout {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.request-main {
    flex: 1;
    min-width: 0;
}

.request-sidebar {
    width: 320px;
}
@media (min-width: 769px) {
    .request-sidebar {
        position: sticky;
        top: 120px;
        align-self: flex-start;
    }
}
@media (max-width: 768px) {

    .request-layout {
        display: block;
    }

    .request-main,
    .request-sidebar {
        width: 100%;
    }

    .request-sidebar {
        position: static;
        margin-top: 2rem;
    }
}
/* =========================
   ADD-ONS CARD ENHANCEMENT
========================= */

.content-card {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Add-ons container */
.addon-selection-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Each addon row */
.addon-option {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;

    padding: 1rem 1.1rem;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--surface);
    transition: all 0.2s ease;
}

.addon-option:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: rgba(191, 163, 122, 0.4);
}

/* Left side (checkbox + text) */
.addon-option__left {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

/* Checkbox polish */
.addon-option input[type="checkbox"] {
    margin-top: 4px;
    transform: scale(1.1);
    accent-color: var(--accent);
}

/* Title */
.addon-option strong {
    display: block;
    font-size: 1rem;
}

/* Description */
.addon-option p {
    margin: 0.25rem 0 0;
    font-size: 0.9rem;
    color: var(--muted);
}

/* Price */
.addon-option__price {
    font-weight: 600;
    color: var(--accent);
    white-space: nowrap;
}

/* =========================
   STAFF INPUT BOX (IMPORTANT PART)
========================= */

.staff-addons {
    margin-top: -0.5rem;
    margin-bottom: 1rem;

    padding: 1rem;
    border-left: 2px solid var(--accent);
    background: rgba(191, 163, 122, 0.05);
    border-radius: 12px;
}

.staff-addons small {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--muted);
    font-size: 0.85rem;
}

/* Inputs layout */
.staff-addons label {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 1rem;
    margin-bottom: 0.75rem;

    font-size: 0.9rem;
}

/* Input styling */
.staff-addons input {
    width: 70px;
    padding: 0.4rem 0.5rem;

    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--surface-soft);

    color: var(--text);
    text-align: center;
}

/* =========================
   MOBILE OPTIMISATION
========================= */

@media (max-width: 768px) {

    .addon-option {
        flex-direction: column;
        align-items: flex-start;
    }

    .addon-option__price {
        align-self: flex-end;
        margin-top: 0.5rem;
    }

    .staff-addons label {
        flex-direction: column;
        align-items: flex-start;
    }

    .staff-addons input {
        width: 100%;
    }
}
.status-pill {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    margin-top: 10px;
    font-weight: 600;
    background: #eee;
}

.status-pill--new { background: #e0e0e0; }
.status-pill--reviewed { background: #cfe8ff; }
.status-pill--approved_pending_payment { background: #ffe7b3; }
.status-pill--payment_pending_verification { background: #ffd6a5; }
.status-pill--paid { background: #b8f2c2; }
.status-pill--confirmed { background: #a3e6a3; }
.status-pill--declined { background: #ffb3b3; }

.status-timeline {
    list-style: none;
    padding-left: 0;
}

.status-timeline li {
    padding: 6px 0;
    opacity: 0.4;
}

.status-timeline li.active {
    opacity: 1;
    font-weight: 600;
}
.confirmation-card {
    border: 1px solid rgba(0,0,0,0.08);
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
}

.confirmation-card h2 {
    margin-bottom: 0.5rem;
}

.confirmation-card .summary-list {
    border-top: 1px solid #eee;
    padding-top: 1rem;
}