:root {
    --mh-navy: #003b73;
    --mh-navy-dark: #002f5d;
    --mh-navy-deep: #002f63;
    --mh-orange: #ff8a00;
    --mh-text: #0b1b33;
    --mh-white: #ffffff;
    --mh-light: #f3f4f6;
    --mh-border: rgba(255, 255, 255, 0.15);
    --mh-shadow: 0 4px 12px rgba(0, 0, 0, 0.14);
    --mh-radius: 16px;
}

html, body {
    margin: 0;
    padding: 0;
}

body.mh-site {
    font-family: Arial, sans-serif;
    background: #ffffff;
    color: var(--mh-text);
}

.mh-header {
    z-index: 1030;
}

.mh-navbar {
    background: #f1f2f4;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    min-height: 88px;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.mh-brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--mh-navy);
    font-size: 1.15rem;
}

.mh-brand:hover {
    color: var(--mh-navy);
}

.mh-brand-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: var(--mh-navy);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    flex-shrink: 0;
}

.mh-brand-text {
    font-size: 1.2rem;
    line-height: 1.1;
}

.mh-accent {
    color: var(--mh-orange);
}

.mh-nav-link {
    color: #101828;
    font-weight: 600;
    padding: 0.7rem 1rem !important;
    border-radius: 10px;
}

.mh-nav-link:hover,
.mh-nav-link:focus {
    color: var(--mh-navy);
    background: rgba(0, 59, 115, 0.07);
}

.mh-quote-btn {
    background: var(--mh-navy);
    color: #fff;
    border-radius: 14px;
    padding: 0.85rem 1.5rem;
    font-weight: 700;
    border: none;
    box-shadow: var(--mh-shadow);
}

.mh-quote-btn:hover,
.mh-quote-btn:focus {
    background: var(--mh-navy-dark);
    color: #fff;
}

.mh-toggler {
    border: none;
    box-shadow: none !important;
}

.mh-main {
    min-height: 50vh;
}

.mh-footer {
    background: var(--mh-navy);
    color: rgba(255, 255, 255, 0.92);
    margin-top: 0;
}

.mh-footer-cta {
    padding: 4.5rem 0 4rem;
    border-top: 1px solid var(--mh-border);
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.mh-footer-title {
    font-size: clamp(2rem, 5vw, 3.8rem);
    line-height: 1.05;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #f7f1f8;
}

.mh-footer-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
}

.mh-footer-cta-btn {
    background: var(--mh-orange);
    color: #111;
    font-weight: 700;
    border-radius: 16px;
    padding: 1rem 2rem;
    min-width: 240px;
    border: none;
    font-size: 1.1rem;
}

.mh-footer-cta-btn:hover,
.mh-footer-cta-btn:focus {
    background: #f07f00;
    color: #111;
}

.mh-footer-main {
    padding: 4.5rem 0 5rem;
}

.mh-footer-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: var(--mh-orange);
    color: #111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    flex-shrink: 0;
}

.mh-footer-brand {
    font-size: 2rem;
    font-weight: 700;
    color: #f7f1f8;
}

.mh-footer-heading {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.3rem;
    color: #ffffff;
}

.mh-footer-text,
.mh-footer-links a,
.mh-footer-contact li,
.mh-footer-bottom small {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.8;
}

.auth-links p {
    margin-bottom: 0;
}

.mh-footer-links li,
.mh-footer-contact li {
    margin-bottom: 0.5rem;
}

.mh-footer-links a:hover,
.mh-footer-links a:focus {
    color: var(--mh-orange);
}

.mh-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1.6rem 0;
}

/* Contact page */
.mh-page-soft {
    background: #edf2f6;
    min-height: 100vh;
}

.contact-hero {
    background:
        radial-gradient(circle at 75% 70%, rgba(91, 160, 198, 0.35), transparent 32%),
        linear-gradient(135deg, #003b73 0%, #004a87 50%, #0e5a88 100%);
    padding: 6rem 0 4.5rem;
}

.contact-hero-shell {
    display: flex;
    justify-content: center;
}

.contact-hero-content {
    text-align: center;
    margin: 0 auto;
}

.contact-hero-content h1 {
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: #f4f0f6;
    font-family: Arial, sans-serif;
}

.contact-hero-text {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: #ff8a00;
}

.contact-section {
    padding: 4rem 0 5rem;
}

.contact-info-stack {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.mh-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #d7dee6;
    border-radius: 20px;
    padding: 1.5rem 1.4rem;
    box-shadow: 0 8px 22px rgba(7, 27, 52, 0.08);
}

.contact-info-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #ff8a00;
    color: #111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.mh-info-card h3 {
    margin-bottom: 0.35rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #04142b;
    font-family: Arial, sans-serif;
}

.mh-info-card p {
    margin: 0;
    color: #4e637d;
    line-height: 1.6;
    font-size: 1.1rem;
    font-weight:500;
}

.mh-side-note {
    background: #003b73;
    border-radius: 24px;
    padding: 1.7rem 1.5rem;
    box-shadow: 0 10px 24px rgba(7, 27, 52, 0.12);
}


.mh-form-card {
    border-radius: 28px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid #d7dee6;
    box-shadow: 0 10px 24px rgba(7, 27, 52, 0.08);
}

.mh-form .input label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #04142b;
    margin-bottom: 0.45rem;
    font-family: Arial, sans-serif;
}

.mh-form input,
.mh-form textarea,
.mh-form select {
    border: 1px solid #cfd8e2;
    border-radius: 14px;
    background: #fff;
    box-shadow: none;
    padding: 1rem 1rem 1.05rem;
    font-size: 1rem;
}

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

.mh-form input:focus,
.mh-form textarea:focus,
.mh-form select:focus {
    border-color: #ff8a00;
    box-shadow: 0 0 0 3px rgba(255, 138, 0, 0.14);
}

.recaptcha-wrap {
    padding-top: 0.25rem;
}

/* Auth pages */
.auth-section {
    background:
        radial-gradient(circle at 75% 20%, rgba(91, 160, 198, 0.18), transparent 24%),
        linear-gradient(180deg, #edf2f6 0%, #edf2f6 100%);
}

.auth-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid #d7dee6;
    border-radius: 28px;
    padding: 2.25rem;
    box-shadow: 0 12px 30px rgba(7, 27, 52, 0.08);
}

.auth-card-wide {
    padding: 2.4rem;
}

.auth-header {
    margin-bottom: 1.75rem;
}

.auth-title {
    font-size: clamp(2.3rem, 4vw, 3.4rem);
    line-height: 1.08;
    font-weight: 800;
    margin-bottom: 0.85rem;
    color: #04142b;
    font-family: Arial, sans-serif;
}

.auth-subtitle {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #4e637d;
    max-width: 540px;
    margin: 0 auto;
}

.auth-form-group {
    margin-bottom: 1rem;
}

.auth-form-group .input {
    margin-bottom: 0;
}

.auth-form .input {
    margin-bottom: 1.15rem;
}

.auth-form .input label {
    font-size: 1.08rem;
    font-weight: 700;
    color: #04142b;
    margin-bottom: 0.55rem;
}

.auth-input::placeholder {
    color: #7a8ca4;
}

.auth-form input,
.auth-form textarea,
.auth-form select,
.auth-input {
    border: 1px solid #cfd8e2;
    border-radius: 14px;
    background: #fff;
    box-shadow: none;
    padding: 1rem 1rem 1.05rem;
    font-size: 1rem;
    width: 100%;
}

.auth-form input:focus,
.auth-form textarea:focus,
.auth-form select:focus,
.auth-input:focus {
    border-color: #ff8a00;
    box-shadow: 0 0 0 3px rgba(255, 138, 0, 0.14);
}

.auth-form textarea {
    min-height: 140px;
    resize: vertical;
}

.auth-form-actions {
    margin-top: 1rem;
}

.auth-links {
    margin-top: 1.5rem;
}

.auth-links a {
    color: #003b73;
    font-weight: 600;
    text-decoration: none;
}

.auth-links a:hover,
.auth-links a:focus {
    color: #ff8a00;
    text-decoration: none;
}

.auth-recaptcha {
    margin-top: 0.35rem;
    margin-bottom: 1rem;
    overflow: visible;
    display:flex;
    justify-content: center;
}

.auth-card .message {
    margin-bottom: 1.2rem;
    border-radius: 14px;
}

/* Booking page */
.booking-hero {
    background:
        radial-gradient(circle at 78% 22%, rgba(91, 160, 198, 0.24), transparent 26%),
        linear-gradient(135deg, #003b73 0%, #004a87 52%, #0e5a88 100%);
    padding: 5.5rem 0 4rem;
}

.booking-hero-shell {
    display: flex;
    justify-content: center;
}

.booking-hero-content {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.booking-eyebrow {
    display: inline-block;
    margin-bottom: 0.9rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.booking-hero-content h1 {
    font-size: clamp(2.6rem, 5vw, 4.4rem);
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #f4f0f6;
    font-family: Arial, sans-serif;
}

.booking-hero-text {
    max-width: 720px;
    margin: 0 auto;
    color: #ffb45c;
    font-size: 1.08rem;
    line-height: 1.7;
}

.booking-section {
    padding: 4rem 0 5rem;
}

.booking-info-stack {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.booking-info-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #ff8a00;
    color: #111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.mh-info-card h3,
.mh-side-note h4,
.booking-form-header h2 {
    margin-bottom: 0.35rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #04142b;
    font-family: Arial, sans-serif;
}

.mh-info-card p,
.mh-side-note p,
.booking-form-header p {
    margin: 0;
    color: #4e637d;
    line-height: 1.6;
    font-size: 1rem;
}

.booking-secondary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.8rem 1.2rem;
    border-radius: 14px;
    background: #ff8a00;
    color: #111;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(255, 138, 0, 0.2);
}

.booking-secondary-link:hover,
.booking-secondary-link:focus {
    background: #f17f00;
    color: #111;
    text-decoration: none;
}

.booking-form-header {
    margin-bottom: 1.5rem;
}

.booking-form .input {
    margin-bottom: 0;
}

.booking-form .input label {
    font-size: 1.05rem;
    font-weight: 700;
    color: #04142b;
    margin-bottom: 0.5rem;
    font-family: Arial, sans-serif;
}

.booking-form input,
.booking-form textarea,
.booking-form select,
.booking-input {
    width: 100%;
    border: 1px solid #cfd8e2;
    border-radius: 14px;
    background: #fff;
    box-shadow: none;
    padding: 1rem 1rem 1.05rem;
    font-size: 1rem;
}

.booking-form input:focus,
.booking-form textarea:focus,
.booking-form select:focus,
.booking-input:focus {
    border-color: #ff8a00;
    box-shadow: 0 0 0 3px rgba(255, 138, 0, 0.14);
}

.booking-form-actions {
    margin-top: 1.4rem;
}

.mh-btn-primary,
.mh-btn-primary.button,
.mh-btn-primary[type='submit'] {
    width: 100%;
    min-height: 54px;
    border-radius: 16px;
    background: #ff8a00;
    border: 1px solid #ff8a00;
    color: #111;
    font-size: 1rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.2;
    box-shadow: 0 8px 20px rgba(255, 138, 0, 0.2);
    margin-bottom: 0;
}

.mh-btn-primary:hover,
.mh-btn-primary:focus {
    background: #f17f00;
    border-color: #f17f00;
    color: #111;
}

/* Admin list pages */
.admin-hero {
    background:
        radial-gradient(circle at 78% 24%, rgba(91, 160, 198, 0.24), transparent 26%),
        linear-gradient(135deg, #003b73 0%, #004a87 52%, #0e5a88 100%);
    padding: 5.5rem 0 4rem;
}

.admin-hero-shell {
    display: flex;
    justify-content: center;
}

.admin-hero-content {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.admin-eyebrow {
    display: inline-block;
    margin-bottom: 0.9rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.admin-hero-content h1 {
    font-size: clamp(2.6rem, 5vw, 4.4rem);
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #f4f0f6;
    font-family: Arial, sans-serif;
}

.admin-hero-text {
    max-width: 720px;
    margin: 0 auto;
    color: #ffb45c;
    font-size: 1.08rem;
    line-height: 1.7;
}

.admin-section {
    padding: 4rem 0 5rem;
}

.admin-table-card {
    border-radius: 28px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid #d7dee6;
    box-shadow: 0 10px 24px rgba(7, 27, 52, 0.08);
}

.admin-table-header {
    margin-bottom: 1.5rem;
}

.admin-table-header-split {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.admin-table-header h2 {
    margin-bottom: 0.35rem;
    font-size: 1.45rem;
    font-weight: 700;
    color: #04142b;
    font-family: Arial, sans-serif;
}

.admin-table-header p {
    margin: 0;
    color: #4e637d;
    line-height: 1.6;
    font-size: 1rem;
}

.admin-table-wrap {
    overflow-x: auto;
    border: 1px solid #e1e7ef;
    border-radius: 20px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    min-width: 980px;
}

.admin-table thead th {
    background: #f6f8fb;
    color: #04142b;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 1rem 1rem;
    border-bottom: 1px solid #e1e7ef;
    white-space: nowrap;
}

.admin-table tbody td {
    padding: 1rem;
    border-bottom: 1px solid #edf1f5;
    color: #23364f;
    vertical-align: top;
    line-height: 1.5;
}

.admin-table tbody tr:hover {
    background: #fafcff;
}

.admin-row-highlight {
    background: #eef8ef;
}

.admin-inline-link {
    color: #003b73;
    font-weight: 700;
    text-decoration: none;
}

.admin-inline-link:hover,
.admin-inline-link:focus {
    color: #ff8a00;
    text-decoration: none;
}

.admin-action-stack {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    align-items: flex-start;
}

.admin-action-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0.5rem 0.9rem;
    border-radius: 12px;
    background: rgba(0, 59, 115, 0.08);
    color: #003b73;
    text-decoration: none;
    font-weight: 700;
    border: none;
    box-shadow: none;
}

.admin-action-link:hover,
.admin-action-link:focus {
    background: rgba(0, 59, 115, 0.14);
    color: #003b73;
    text-decoration: none;
}

.admin-action-link-danger {
    background: rgba(186, 38, 38, 0.1);
    color: #a12828;
}

.admin-action-link-danger:hover,
.admin-action-link-danger:focus {
    background: rgba(186, 38, 38, 0.16);
    color: #8d1e1e;
}

.admin-primary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.8rem 1.2rem;
    border-radius: 14px;
    background: #ff8a00;
    color: #111;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(255, 138, 0, 0.2);
}

.admin-primary-link:hover,
.admin-primary-link:focus {
    background: #f17f00;
    color: #111;
    text-decoration: none;
}

.admin-role-badge,
.admin-status-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    background: rgba(0, 59, 115, 0.08);
    color: #003b73;
}

.admin-status-new {
    background: rgba(255, 138, 0, 0.14);
    color: #a95b00;
}

.admin-status-replied {
    background: rgba(28, 122, 54, 0.14);
    color: #1d6a34;
}

.admin-paginator {
    margin-top: 1.5rem;
}

.admin-paginator .pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-left: 0;
    list-style: none;
    margin-bottom: 0.9rem;
}

.admin-paginator .pagination li a,
.admin-paginator .pagination li span,
.admin-paginator .pagination a,
.admin-paginator .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 40px;
    padding: 0.55rem 0.8rem;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #d7dee6;
    color: #003b73;
    text-decoration: none;
    font-weight: 700;
}

.admin-paginator .pagination .current {
    background: #003b73;
    color: #fff;
    border-color: #003b73;
}

.admin-paginator p {
    margin: 0;
    color: #4e637d;
    line-height: 1.6;
}

@media (max-width: 991.98px) {
    .admin-hero {
        padding: 4.75rem 0 3.5rem;
    }

    .admin-table-card {
        padding: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .admin-section {
        padding: 3rem 0 4rem;
    }

    .admin-hero-content h1 {
        font-size: 2.35rem;
    }

    .admin-hero-text {
        font-size: 1rem;
    }

    .admin-table-card {
        padding: 1.2rem;
    }
}

/*Booking form*/
@media (max-width: 991.98px) {
    .booking-hero {
        padding: 4.75rem 0 3.5rem;
    }

    .mh-form-card {
        padding: 1.6rem;
    }
}

@media (max-width: 767.98px) {
    .booking-section {
        padding: 3rem 0 4rem;
    }

    .booking-hero-content h1 {
        font-size: 2.35rem;
    }

    .booking-hero-text {
        font-size: 1rem;
    }
}

/* Auth mobile pages */

@media (max-width: 991.98px) {
    .auth-card,
    .auth-card-wide {
        padding: 1.75rem;
    }
}

@media (max-width: 767.98px) {
    .auth-title {
        font-size: 2.2rem;
    }

    .auth-subtitle {
        font-size: 0.98rem;
    }
}

/*Contact page mobile website*/

@media (max-width: 991.98px) {
    .contact-hero {
        padding: 5rem 0 3.5rem;
    }

    .contact-form-card {
        padding: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .contact-section {
        padding: 3rem 0 4rem;
    }

    .contact-hero-content h1 {
        font-size: 2.5rem;
    }

    .contact-hero-text {
        font-size: 1.02rem;
        color: #ff8a00;
    }
}

/*Main Moving house Mobile Website*/
@media (max-width: 991.98px) {
    .mh-navbar {
        min-height: auto;
    }

    .mh-brand-text {
        font-size: 1.05rem;
    }

    .mh-footer-cta {
        padding: 3rem 0;
    }

    .mh-footer-title {
        font-size: 2.3rem;
    }

    .mh-footer-brand {
        font-size: 1.6rem;
    }

    .mh-footer-cta-btn {
        width: 100%;
    }
}
