* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #15120f;
    color: #e8dfcf;
    font-family: Georgia, "Times New Roman", serif;
}


/* =========================
   NAVIGATION
========================= */

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    color: #e8dfcf;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: #8f877d;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #e8dfcf;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 100vh;
    padding: 140px 40px 100px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            #28221b 0%,
            #181512 45%,
            #0f0d0b 100%
        );
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
}

.eyebrow {
    margin: 0 0 25px;

    color: #a99a83;

    font-size: 12px;
    letter-spacing: 5px;
}

.hero h1 {
    margin: 0 0 30px;

    color: #e8dfcf;

    font-size: clamp(60px, 8vw, 115px);
    line-height: 0.92;

    font-weight: normal;
    letter-spacing: -4px;
}

.hero-description {
    max-width: 550px;
    margin: 0 auto 40px;

    color: #aaa096;

    font-size: 18px;
    line-height: 1.7;
}


/* =========================
   BUTTON
========================= */

.button {
    display: inline-block;

    padding: 16px 32px;

    border: 1px solid #706555;

    background: transparent;

    color: #e8dfcf;

    text-decoration: none;

    font-family: inherit;
    font-size: 12px;
    letter-spacing: 2px;

    cursor: pointer;

    transition: 0.3s;
}

.button:hover {
    background: #e8dfcf;
    color: #15120f;
}


/* =========================
   GENERAL
========================= */

.section-label {
    margin: 0 0 20px;

    color: #a99a83;

    font-size: 12px;
    letter-spacing: 4px;
}

.work h2,
.services h2,
.about h2,
.commission h2 {
    margin: 0;

    color: #e8dfcf;

    font-size: clamp(40px, 5vw, 70px);
    font-weight: normal;
    line-height: 1.1;
}


/* =========================
   WORK
========================= */

.work {
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 40px;

    text-align: center;
}

.work-header {
    max-width: 700px;
    margin: 0 auto;
}

.map-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

    margin-top: 70px;
}

.map-card {
    text-align: left;
}

.map-placeholder {
    width: 100%;
    overflow: hidden;

    border: 1px solid #39332c;
    background: #1c1814;

    cursor: pointer;

    transition: 0.4s;
}

.map-placeholder img {
    width: 100%;
    height: auto;

    display: block;

    transition: transform 0.4s ease;
}

.map-card:hover .map-placeholder {
    background: #211c17;
    border-color: #625b51;
}

.map-card:hover .map-placeholder img {
    transform: scale(1.02);
}

.map-card:hover .map-placeholder {
    background: #211c17;
    border-color: #625b51;
}

.map-info {
    padding-top: 18px;
}

.map-info h3 {
    margin: 0 0 7px;

    color: #e8dfcf;

    font-size: 19px;
    font-weight: normal;
}

.map-info p {
    margin: 0;

    color: #625b51;

    font-size: 12px;
    letter-spacing: 1px;
}

.work-link {
    display: inline-block;

    margin-top: 60px;

    color: #aaa096;

    text-decoration: none;

    font-size: 13px;
    letter-spacing: 1px;

    transition: 0.3s;
}

.work-link:hover {
    color: #e8dfcf;
}

.work-link span {
    margin-left: 8px;
}


/* =========================
   SERVICES
========================= */

.services {
    max-width: 1200px;
    margin: 0 auto;

    padding: 150px 40px;

    border-top: 1px solid #29251f;
}

.services > h2 {
    max-width: 700px;
}

.services-list {
    margin-top: 80px;

    border-top: 1px solid #39332c;
}

.service-item {
    display: flex;
    align-items: center;

    padding: 28px 10px;

    border-bottom: 1px solid #39332c;

    transition: 0.3s;
}

.service-item span {
    width: 70px;

    color: #625b51;

    font-size: 11px;
    letter-spacing: 2px;
}

.service-item h3 {
    margin: 0;

    color: #d0c5b4;

    font-size: 24px;
    font-weight: normal;

    transition: 0.3s;
}

.service-item:hover {
    padding-left: 20px;
}

.service-item:hover h3 {
    color: #e8dfcf;
}


/* =========================
   ABOUT
========================= */

.about {
    max-width: 1200px;
    margin: 0 auto;

    padding: 160px 40px;

    border-top: 1px solid #29251f;
}

.about-content {
    max-width: 850px;
    margin: 0 auto;

    text-align: center;
}

.about h2 {
    font-size: clamp(45px, 6vw, 80px);
    line-height: 1.05;
}

.about-text {
    max-width: 500px;
    margin: 40px auto 0;

    color: #8f877d;

    font-size: 16px;
    line-height: 1.8;
}


/* =========================
   COMMISSION
========================= */

.commission {
    max-width: 1200px;
    margin: 0 auto;

    padding: 170px 40px;

    border-top: 1px solid #29251f;

    text-align: center;
}

.commission-content {
    max-width: 900px;
    margin: 0 auto;
}

.commission h2 {
    font-size: clamp(45px, 6vw, 80px);
}

.commission-text {
    max-width: 500px;
    margin: 35px auto 0;

    color: #8f877d;

    font-size: 16px;
    line-height: 1.8;
}

.commission-steps {
    max-width: 700px;
    margin: 70px auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid #39332c;
    border-bottom: 1px solid #39332c;
}

.commission-step {
    padding: 30px 20px;

    border-right: 1px solid #39332c;
}

.commission-step:last-child {
    border-right: none;
}

.commission-step span {
    display: block;

    margin-bottom: 12px;

    color: #625b51;

    font-size: 12px;
    letter-spacing: 2px;
}

.commission-step p {
    margin: 0;

    color: #d0c5b4;

    font-size: 14px;
}


/* =========================
   MODAL
========================= */

.modal {
    position: fixed;
    inset: 0;

    z-index: 1000;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 30px;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.78);

    backdrop-filter: blur(8px);
}

.modal-box {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 650px;
    max-height: 90vh;

    overflow-y: auto;

    padding: 55px;

    background: #1c1814;

    border: 1px solid #39332c;

    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.6);
}

.modal-box h2 {
    margin: 0;

    color: #e8dfcf;

    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.05;
    font-weight: normal;
}

.modal-description {
    max-width: 500px;

    margin: 20px 0 40px;

    color: #8f877d;

    font-size: 15px;
    line-height: 1.7;
}

.modal-close {
    position: absolute;

    top: 15px;
    right: 20px;

    width: 40px;
    height: 40px;

    border: none;

    background: transparent;

    color: #8f877d;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 32px;

    cursor: pointer;

    transition: 0.3s;
}

.modal-close:hover {
    color: #e8dfcf;
}


/* =========================
   FORM
========================= */

.map-request-form {
    display: flex;
    flex-direction: column;

    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;

    gap: 9px;
}

.form-group label {
    color: #aaa096;

    font-size: 11px;
    letter-spacing: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 15px;

    border: 1px solid #39332c;

    background: #15120f;

    color: #e8dfcf;

    font-family: inherit;
    font-size: 14px;

    outline: none;

    transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #706555;
}

.form-group textarea {
    min-height: 150px;

    resize: vertical;
}

.form-group select {
    cursor: pointer;
}

.form-button {
    width: fit-content;

    margin-top: 10px;

    cursor: pointer;
}

body.modal-open {
    overflow: hidden;
}

/* =========================
   BUSINESS INFORMATION
========================= */

.business-information {
    max-width: 1200px;
    margin: 0 auto;

    padding: 100px 40px;

    border-top: 1px solid #29251f;
}

.business-information-content {
    max-width: 900px;
    margin: 0 auto;

    text-align: center;
}

.business-information h2 {
    margin: 0;

    color: #e8dfcf;

    font-size: clamp(38px, 5vw, 65px);

    line-height: 1.1;
    font-weight: normal;
}

.business-description {
    max-width: 600px;

    margin: 20px auto 50px;

    color: #8f877d;

    font-size: 15px;
    line-height: 1.7;
}

.business-details {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    border-top: 1px solid #39332c;
    border-bottom: 1px solid #39332c;
}

.business-detail {
    padding: 28px 20px;

    display: flex;
    flex-direction: column;

    gap: 10px;

    text-align: center;
}

.business-detail + .business-detail {
    border-left: 1px solid #39332c;
}

.business-detail span {
    color: #625b51;

    font-size: 10px;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.business-detail strong {
    color: #e8dfcf;

    font-size: 13px;

    font-weight: normal;

    word-break: break-word;
}


/* =========================
   BUSINESS INFORMATION
   MOBILE
========================= */

@media (max-width: 700px) {

    .business-information {
        padding: 90px 20px;
    }

    .business-details {
        grid-template-columns: 1fr;
    }

    .business-detail + .business-detail {
        border-left: none;
        border-top: 1px solid #39332c;
    }

}
/* =========================
   FOOTER
========================= */

footer {
    border-top: 1px solid #29251f;

    padding: 60px 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.footer-brand {
    color: #e8dfcf;

    font-size: 14px;
    letter-spacing: 2px;
}

.footer-links {
    display: flex;

    gap: 25px;
}

.footer-links a {
    color: #625b51;

    text-decoration: none;

    font-size: 12px;

    transition: 0.3s;
}

.footer-links a:hover {
    color: #e8dfcf;
}

.footer-copy {
    margin: 0;

    color: #4f4942;

    font-size: 11px;
    letter-spacing: 1px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {

    nav {
        padding: 25px 20px;
    }

    .logo {
        font-size: 11px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 10px;
    }

    .hero {
        padding: 180px 20px 100px;
    }

    .hero h1 {
        font-size: 55px;
    }

    .work,
    .services,
    .about,
    .commission {
        padding-left: 20px;
        padding-right: 20px;
    }

    .map-grid {
        grid-template-columns: 1fr;
    }

    .services {
        padding-top: 110px;
        padding-bottom: 110px;
    }

    .service-item h3 {
        font-size: 20px;
    }

    .about {
        padding-top: 110px;
        padding-bottom: 110px;
    }

    .commission {
        padding-top: 110px;
        padding-bottom: 110px;
    }

    .commission-steps {
        grid-template-columns: 1fr;
    }

    .commission-step {
        border-right: none;
        border-bottom: 1px solid #39332c;
    }

    .commission-step:last-child {
        border-bottom: none;
    }

    .modal {
        padding: 15px;
    }

    .modal-box {
        padding: 40px 25px;
        max-height: 92vh;
    }

    footer {
        padding: 50px 20px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}/* =========================
   PACKAGES
========================= */

.packages {
    max-width: 1200px;
    margin: 0 auto;

    padding: 160px 40px;

    border-top: 1px solid #29251f;

    text-align: center;
}

.packages-header {
    max-width: 800px;
    margin: 0 auto;
}

.packages-header h2 {
    margin: 0;

    color: #e8dfcf;

    font-size: clamp(45px, 6vw, 75px);
    line-height: 1.05;
    font-weight: normal;
}

.package-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    margin-top: 80px;

    text-align: left;
}

.package-card {
    min-height: 470px;

    padding: 40px 35px;

    border: 1px solid #39332c;

    background: #181512;

    transition: 0.3s;
}

.package-card:hover {
    transform: translateY(-6px);

    border-color: #706555;
}

.package-card.featured {
    background: #211c17;

    border-color: #706555;
}

.package-number {
    margin: 0 0 45px;

    color: #625b51;

    font-size: 11px;
    letter-spacing: 2px;
}

.package-card h3 {
    margin: 0 0 10px;

    color: #e8dfcf;

    font-size: 38px;
    font-weight: normal;
}

.package-level {
    margin: 0;

    color: #a99a83;

    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.package-description {
    min-height: 75px;

    margin: 30px 0;

    color: #8f877d;

    font-size: 14px;
    line-height: 1.7;
}

.package-line {
    width: 100%;
    height: 1px;

    margin-bottom: 25px;

    background: #39332c;
}

.package-card ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.package-card li {
    position: relative;

    margin-bottom: 15px;
    padding-left: 18px;

    color: #c2b8aa;

    font-size: 13px;
}

.package-card li::before {
    content: "—";

    position: absolute;
    left: 0;

    color: #625b51;
}

@media (max-width: 800px) {

    .package-grid {
        grid-template-columns: 1fr;
    }

    .package-card {
        min-height: auto;
    }

    .packages {
        padding-top: 110px;
        padding-bottom: 110px;
    }

}.package-delivery {
    margin-top: 30px;

    color: #8f877d;

    font-size: 12px;
    letter-spacing: 1px;
}

.package-delivery strong {
    color: #e8dfcf;
    font-weight: normal;
}.package-delivery {
    margin-top: 30px;
    padding-top: 20px;

    border-top: 1px solid #39332c;

    color: #8f877d;

    font-size: 12px;
    letter-spacing: 1px;
}

.package-delivery strong {
    color: #e8dfcf;
    font-weight: normal;
}/* =========================
   LANGUAGE SWITCHER
========================= */

.language-switcher {
    margin-left: 25px;

    padding: 7px 10px;

    border: 1px solid #39332c;

    background: transparent;

    color: #8f877d;

    font-family: inherit;

    font-size: 10px;

    letter-spacing: 1px;

    cursor: pointer;

    transition: 0.3s;
}

.language-switcher:hover {
    color: #e8dfcf;
    border-color: #706555;
}


/* Arabic layout */

html[dir="rtl"] nav {
    flex-direction: row-reverse;
}

html[dir="rtl"] .nav-links {
    flex-direction: row-reverse;
}

html[dir="rtl"] .language-switcher {
    margin-left: 0;
    margin-right: 25px;
}

html[dir="rtl"] .services-list {
    text-align: right;
}

html[dir="rtl"] .service-item:hover {
    padding-left: 10px;
    padding-right: 20px;
}

html[dir="rtl"] .map-card {
    text-align: right;
}

html[dir="rtl"] .package-card {
    text-align: right;
}

html[dir="rtl"] .package-card li {
    padding-left: 0;
    padding-right: 18px;
}

html[dir="rtl"] .package-card li::before {
    left: auto;
    right: 0;
}

html[dir="rtl"] .commission-step {
    text-align: center;
}

html[dir="rtl"] .form-group {
    text-align: right;
}

html[dir="rtl"] .footer-content {
    direction: rtl;
}


@media (max-width: 700px) {

    .language-switcher {
        margin: 0;
    }

    html[dir="rtl"] .language-switcher {
        margin: 0;
    }

}/* =========================
   ACCOUNT
========================= */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.account-button {
    padding: 9px 14px;

    border: 1px solid #39332c;

    background: transparent;

    color: #aaa096;

    font-family: inherit;

    font-size: 11px;

    letter-spacing: 1px;

    cursor: pointer;

    transition: 0.3s;
}

.account-button:hover {
    color: #e8dfcf;
    border-color: #706555;
}

.auth-box {
    max-width: 600px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.auth-switch {
    margin-top: 25px;

    color: #625b51;

    font-size: 13px;
}

.auth-switch button {
    padding: 0;

    border: none;

    background: transparent;

    color: #a99a83;

    font-family: inherit;

    font-size: inherit;

    cursor: pointer;
}

.auth-switch button:hover {
    color: #e8dfcf;
}

.auth-message {
    min-height: 20px;

    margin-top: 20px;

    color: #a99a83;

    font-size: 13px;

    line-height: 1.6;
}


@media (max-width: 700px) {

    .nav-actions {
        gap: 8px;
    }

    .account-button {
        font-size: 10px;
        padding: 8px 10px;
    }

}/* =========================
   ACCOUNT DASHBOARD
========================= */

.account-dashboard {
    max-width: 700px;
}

.account-info {
    margin-top: 40px;

    border-top: 1px solid #39332c;
    border-bottom: 1px solid #39332c;
}

.account-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 0;

    border-bottom: 1px solid #39332c;
}

.account-info-row:last-child {
    border-bottom: none;
}

.account-info-row span {
    color: #625b51;

    font-size: 11px;
    letter-spacing: 2px;
}

.account-info-row strong {
    color: #d0c5b4;

    font-size: 13px;
    font-weight: normal;
}

.dashboard-section {
    margin-top: 45px;
}

.dashboard-section-title {
    margin: 0 0 20px;

    color: #a99a83;

    font-size: 11px;
    letter-spacing: 3px;
}

.empty-requests {
    padding: 30px;

    border: 1px solid #39332c;

    background: #15120f;
}

.empty-requests p {
    margin: 0 0 25px;

    color: #8f877d;

    font-size: 14px;
    line-height: 1.7;
}

.logout-button {
    margin-top: 35px;

    border: none;
    background: transparent;

    color: #625b51;

    font-family: inherit;

    font-size: 11px;
    letter-spacing: 2px;

    cursor: pointer;

    transition: 0.3s;
}

.logout-button:hover {
    color: #e8dfcf;
}

html[dir="rtl"] .account-info-row {
    direction: rtl;
}

html[dir="rtl"] .empty-requests {
    text-align: right;
}

@media (max-width: 700px) {

    .account-dashboard {
        max-width: 100%;
    }

    .account-info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

}.request-card {
    padding: 20px;
    margin-bottom: 12px;

    border: 1px solid #39332c;

    background: #1c1814;
}

.request-card:last-child {
    margin-bottom: 0;
}

.request-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;
}

.request-card-header strong {
    color: #e8dfcf;

    font-size: 15px;
    font-weight: normal;
}

.request-card-header span {
    color: #a99a83;

    font-size: 11px;
    letter-spacing: 1px;
}

.request-card p {
    margin: 10px 0 5px;

    color: #d0c5b4;

    font-size: 13px;
}

.request-card small {
    color: #625b51;

    font-size: 11px;
}/* =========================
   ADMIN DASHBOARD
========================= */

.admin-box {
    max-width: 900px;
}

.admin-requests {
    display: flex;
    flex-direction: column;
    gap: 15px;

    margin-top: 35px;
}

.admin-request-card {
    padding: 25px;

    border: 1px solid #39332c;

    background: #15120f;
}

.admin-request-top {
    display: flex;

    justify-content: space-between;
    align-items: flex-start;

    gap: 20px;
}

.admin-request-number {
    margin: 0 0 8px;

    color: #625b51;

    font-size: 10px;
    letter-spacing: 2px;
}

.admin-request-card h3 {
    margin: 0;

    color: #e8dfcf;

    font-size: 22px;
    font-weight: normal;
}

.admin-status {
    padding: 9px 12px;

    border: 1px solid #39332c;

    background: #1c1814;

    color: #d0c5b4;

    font-family: inherit;

    font-size: 11px;

    cursor: pointer;
}

.admin-request-details {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;

    margin-top: 25px;

    padding-top: 20px;

    border-top: 1px solid #29251f;
}

.admin-request-details div {
    display: flex;
    flex-direction: column;

    gap: 7px;
}

.admin-request-details span,
.admin-description > span {
    color: #625b51;

    font-size: 9px;

    letter-spacing: 2px;
}

.admin-request-details strong {
    color: #d0c5b4;

    font-size: 12px;

    font-weight: normal;

    word-break: break-word;
}

.admin-description {
    margin-top: 25px;

    padding-top: 20px;

    border-top: 1px solid #29251f;
}

.admin-description p {
    margin: 10px 0 0;

    color: #8f877d;

    font-size: 13px;

    line-height: 1.7;
}

.admin-loading,
.admin-error {
    color: #8f877d;

    font-size: 13px;
}


@media (max-width: 700px) {

    .admin-request-top {
        flex-direction: column;
    }

    .admin-status {
        width: 100%;
    }

    .admin-request-details {
        grid-template-columns: 1fr 1fr;
    }

}/* =========================
   CHAT
========================= */

.chat-box {
    max-width: 750px;
}

.chat-messages {
    height: 400px;

    overflow-y: auto;

    margin-top: 30px;
    padding: 25px;

    border: 1px solid #39332c;

    background: #15120f;

    display: flex;
    flex-direction: column;

    gap: 15px;
}

.chat-message {
    max-width: 75%;

    padding: 14px 16px;

    border: 1px solid #39332c;

    background: #1c1814;
}

.chat-message.sent {
    align-self: flex-end;

    border-color: #706555;
}

.chat-message.received {
    align-self: flex-start;
}

.chat-message p {
    margin: 0 0 8px;

    color: #d0c5b4;

    font-size: 14px;
    line-height: 1.6;

    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.chat-message small {
    color: #625b51;

    font-size: 10px;
}

.chat-form {
    display: flex;

    gap: 12px;

    margin-top: 20px;
}

.chat-form textarea {
    flex: 1;

    min-height: 70px;

    padding: 14px;

    border: 1px solid #39332c;

    background: #211c17;

    color: #e8dfcf;

    font-family: inherit;

    font-size: 14px;

    resize: vertical;

    outline: none;
}

.chat-form textarea:focus {
    border-color: #706555;
}

.chat-form .button {
    align-self: flex-end;
}

.chat-empty,
.chat-loading,
.chat-error {
    margin: auto;

    color: #625b51;

    font-size: 13px;
    text-align: center;
}

.chat-message {
    align-self: flex-start;
} 
.chat-message {
    align-self: flex-start;
}

.chat-message.received {
    align-self: flex-start;
    margin-right: auto;
    margin-left: 0;
}

.chat-message.sent {
    align-self: flex-end;
    margin-left: auto;
    margin-right: 0;
}


/* =========================
   MOBILE CHAT
========================= */

@media (max-width: 700px) {

    .chat-box {
        max-width: 100%;
    }

    .chat-messages {
        height: 50vh;

        padding: 15px;
    }

    .chat-message {
        max-width: 88%;
    }

    .chat-form {
        flex-direction: column;
    }

    .chat-form .button {
        width: 100%;
    }

}/* =========================
   CHAT IMAGE UPLOAD
========================= */

.chat-form {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin-top: 15px;
}

.chat-attach-button {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border: 1px solid #39332c;

    background: #211c17;

    color: #aaa096;

    font-size: 20px;

    cursor: pointer;

    transition: 0.3s;
}

.chat-attach-button:hover {
    color: #e8dfcf;
    border-color: #706555;
}


/* =========================
   IMAGE PREVIEW
========================= */

.chat-image-preview {
    position: relative;

    width: fit-content;

    margin-top: 15px;
}

.chat-image-preview img {
    display: block;

    max-width: 180px;
    max-height: 140px;

    object-fit: cover;

    border: 1px solid #39332c;
}

.chat-image-preview button {
    position: absolute;

    top: -10px;
    right: -10px;

    width: 26px;
    height: 26px;

    border: 1px solid #39332c;

    border-radius: 50%;

    background: #15120f;

    color: #d0c5b4;

    font-size: 18px;

    line-height: 1;

    cursor: pointer;
}


/* =========================
   CHAT MESSAGE IMAGE
========================= */

.chat-message-image {
    display: block;

    width: 100%;
    max-width: 350px;

    max-height: 350px;

    margin-top: 10px;

    object-fit: contain;

    border: 1px solid #39332c;

    cursor: pointer;
}

.chat-message-image:hover {
    opacity: 0.9;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {

    .chat-form {
        align-items: stretch;
    }

    .chat-attach-button {
        width: 100%;
        height: 42px;
    }

    .chat-form textarea {
        min-height: 80px;
    }

    .chat-message-image {
        max-width: 100%;
    }

}/* =========================
   CHAT MESSAGE COLORS
========================= */

/* Your own messages */
.chat-message.sent {
    align-self: flex-end;

    background: #332c23;

    border: 1px solid #7d6d56;

    color: #efe6d6;

    border-radius: 14px 14px 4px 14px;
}


/* Other person's messages */
.chat-message.received {
    align-self: flex-start;

    background: #1b1815;

    border: 1px solid #39332c;

    color: #c8beb0;

    border-radius: 14px 14px 14px 4px;
}


/* Message text */
.chat-message.sent p,
.chat-message.received p {
    color: inherit;

    margin: 0 0 8px;

    line-height: 1.65;
}


/* Time */
.chat-message.sent small {
    color: #b8a990;
}

.chat-message.received small {
    color: #6f675d;
}


/* Images */
.chat-message.sent .chat-message-image,
.chat-message.received .chat-message-image {
    border-radius: 10px;
}


/* Hover */
.chat-message.sent:hover,
.chat-message.received:hover {
    transform: translateY(-1px);

    transition: 0.2s ease;
}/* =========================
   CHAT MESSAGE COLORS
========================= */

/* YOUR MESSAGES */
.chat-message.sent {
    align-self: flex-end;
    background: #202830;
    border: 1px solid #536575;
    color: #d5dce2;
    border-radius: 14px 14px 4px 14px;
    box-shadow:
        0 4px 14px rgba(0, 0, 0, 0.14);
}


/* OTHER PERSON'S MESSAGES */
.chat-message.received {
    align-self: flex-start;
    background: #3a3021;
    border: 1px solid #9a7b45;
    color: #f1e4cf;
    border-radius: 14px 14px 14px 4px;
    box-shadow:
        0 4px 14px rgba(0, 0, 0, 0.18);
}


/* TEXT */
.chat-message.sent p,
.chat-message.received p {
    color: inherit;
    margin: 0 0 8px;
    line-height: 1.65;
}


/* TIME */
.chat-message.sent small {
    color: #8e9da9;
}

.chat-message.received small {
    color: #c7ad80;
}


/* IMAGES */
.chat-message.sent .chat-message-image {
    border: 1px solid #536575;
}

.chat-message.received .chat-message-image {
    border: 1px solid #9a7b45;
}


/* HOVER */
.chat-message.sent:hover,
.chat-message.received:hover {
    transform: translateY(-1px);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}/* =========================
   CHAT MESSAGE ALIGNMENT
========================= */

/* Your own messages = LEFT */
.chat-message.sent {
    align-self: flex-start;
}

/* The other person's messages = RIGHT */
.chat-message.received {
    align-self: flex-end;
}* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #15120f;
    color: #e8dfcf;
    font-family: Georgia, "Times New Roman", serif;
}


/* =========================
   NAVIGATION
========================= */

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    color: #e8dfcf;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: #8f877d;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #e8dfcf;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 100vh;
    padding: 140px 40px 100px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            #28221b 0%,
            #181512 45%,
            #0f0d0b 100%
        );
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
}

.eyebrow {
    margin: 0 0 25px;

    color: #a99a83;

    font-size: 12px;
    letter-spacing: 5px;
}

.hero h1 {
    margin: 0 0 30px;

    color: #e8dfcf;

    font-size: clamp(60px, 8vw, 115px);
    line-height: 0.92;

    font-weight: normal;
    letter-spacing: -4px;
}

.hero-description {
    max-width: 550px;
    margin: 0 auto 40px;

    color: #aaa096;

    font-size: 18px;
    line-height: 1.7;
}


/* =========================
   BUTTON
========================= */

.button {
    display: inline-block;

    padding: 16px 32px;

    border: 1px solid #706555;

    background: transparent;

    color: #e8dfcf;

    text-decoration: none;

    font-family: inherit;
    font-size: 12px;
    letter-spacing: 2px;

    cursor: pointer;

    transition: 0.3s;
}

.button:hover {
    background: #e8dfcf;
    color: #15120f;
}


/* =========================
   GENERAL
========================= */

.section-label {
    margin: 0 0 20px;

    color: #a99a83;

    font-size: 12px;
    letter-spacing: 4px;
}

.work h2,
.services h2,
.about h2,
.commission h2 {
    margin: 0;

    color: #e8dfcf;

    font-size: clamp(40px, 5vw, 70px);
    font-weight: normal;
    line-height: 1.1;
}


/* =========================
   WORK
========================= */

.work {
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 40px;

    text-align: center;
}

.work-header {
    max-width: 700px;
    margin: 0 auto;
}

.map-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

    margin-top: 70px;
}

.map-card {
    text-align: left;
}

.map-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #39332c;

    background: #1c1814;

    color: #625b51;

    letter-spacing: 4px;
    font-size: 11px;

    transition: 0.4s;
}

.map-card:hover .map-placeholder {
    background: #211c17;
    border-color: #625b51;
}

.map-info {
    padding-top: 18px;
}

.map-info h3 {
    margin: 0 0 7px;

    color: #e8dfcf;

    font-size: 19px;
    font-weight: normal;
}

.map-info p {
    margin: 0;

    color: #625b51;

    font-size: 12px;
    letter-spacing: 1px;
}

.work-link {
    display: inline-block;

    margin-top: 60px;

    color: #aaa096;

    text-decoration: none;

    font-size: 13px;
    letter-spacing: 1px;

    transition: 0.3s;
}

.work-link:hover {
    color: #e8dfcf;
}

.work-link span {
    margin-left: 8px;
}


/* =========================
   SERVICES
========================= */

.services {
    max-width: 1200px;
    margin: 0 auto;

    padding: 150px 40px;

    border-top: 1px solid #29251f;
}

.services > h2 {
    max-width: 700px;
}

.services-list {
    margin-top: 80px;

    border-top: 1px solid #39332c;
}

.service-item {
    display: flex;
    align-items: center;

    padding: 28px 10px;

    border-bottom: 1px solid #39332c;

    transition: 0.3s;
}

.service-item span {
    width: 70px;

    color: #625b51;

    font-size: 11px;
    letter-spacing: 2px;
}

.service-item h3 {
    margin: 0;

    color: #d0c5b4;

    font-size: 24px;
    font-weight: normal;

    transition: 0.3s;
}

.service-item:hover {
    padding-left: 20px;
}

.service-item:hover h3 {
    color: #e8dfcf;
}


/* =========================
   ABOUT
========================= */

.about {
    max-width: 1200px;
    margin: 0 auto;

    padding: 160px 40px;

    border-top: 1px solid #29251f;
}

.about-content {
    max-width: 850px;
    margin: 0 auto;

    text-align: center;
}

.about h2 {
    font-size: clamp(45px, 6vw, 80px);
    line-height: 1.05;
}

.about-text {
    max-width: 500px;
    margin: 40px auto 0;

    color: #8f877d;

    font-size: 16px;
    line-height: 1.8;
}


/* =========================
   COMMISSION
========================= */

.commission {
    max-width: 1200px;
    margin: 0 auto;

    padding: 170px 40px;

    border-top: 1px solid #29251f;

    text-align: center;
}

.commission-content {
    max-width: 900px;
    margin: 0 auto;
}

.commission h2 {
    font-size: clamp(45px, 6vw, 80px);
}

.commission-text {
    max-width: 500px;
    margin: 35px auto 0;

    color: #8f877d;

    font-size: 16px;
    line-height: 1.8;
}

.commission-steps {
    max-width: 700px;
    margin: 70px auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid #39332c;
    border-bottom: 1px solid #39332c;
}

.commission-step {
    padding: 30px 20px;

    border-right: 1px solid #39332c;
}

.commission-step:last-child {
    border-right: none;
}

.commission-step span {
    display: block;

    margin-bottom: 12px;

    color: #625b51;

    font-size: 12px;
    letter-spacing: 2px;
}

.commission-step p {
    margin: 0;

    color: #d0c5b4;

    font-size: 14px;
}


/* =========================
   MODAL
========================= */

.modal {
    position: fixed;
    inset: 0;

    z-index: 1000;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 30px;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.78);

    backdrop-filter: blur(8px);
}

.modal-box {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 650px;
    max-height: 90vh;

    overflow-y: auto;

    padding: 55px;

    background: #1c1814;

    border: 1px solid #39332c;

    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.6);
}

.modal-box h2 {
    margin: 0;

    color: #e8dfcf;

    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.05;
    font-weight: normal;
}

.modal-description {
    max-width: 500px;

    margin: 20px 0 40px;

    color: #8f877d;

    font-size: 15px;
    line-height: 1.7;
}

.modal-close {
    position: absolute;

    top: 15px;
    right: 20px;

    width: 40px;
    height: 40px;

    border: none;

    background: transparent;

    color: #8f877d;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 32px;

    cursor: pointer;

    transition: 0.3s;
}

.modal-close:hover {
    color: #e8dfcf;
}


/* =========================
   FORM
========================= */

.map-request-form {
    display: flex;
    flex-direction: column;

    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;

    gap: 9px;
}

.form-group label {
    color: #aaa096;

    font-size: 11px;
    letter-spacing: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 15px;

    border: 1px solid #39332c;

    background: #15120f;

    color: #e8dfcf;

    font-family: inherit;
    font-size: 14px;

    outline: none;

    transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #706555;
}

.form-group textarea {
    min-height: 150px;

    resize: vertical;
}

.form-group select {
    cursor: pointer;
}

.form-button {
    width: fit-content;

    margin-top: 10px;

    cursor: pointer;
}

body.modal-open {
    overflow: hidden;
}


/* =========================
   FOOTER
========================= */

footer {
    border-top: 1px solid #29251f;

    padding: 60px 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.footer-brand {
    color: #e8dfcf;

    font-size: 14px;
    letter-spacing: 2px;
}

.footer-links {
    display: flex;

    gap: 25px;
}

.footer-links a {
    color: #625b51;

    text-decoration: none;

    font-size: 12px;

    transition: 0.3s;
}

.footer-links a:hover {
    color: #e8dfcf;
}

.footer-copy {
    margin: 0;

    color: #4f4942;

    font-size: 11px;
    letter-spacing: 1px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {

    nav {
        padding: 25px 20px;
    }

    .logo {
        font-size: 11px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 10px;
    }

    .hero {
        padding: 180px 20px 100px;
    }

    .hero h1 {
        font-size: 55px;
    }

    .work,
    .services,
    .about,
    .commission {
        padding-left: 20px;
        padding-right: 20px;
    }

    .map-grid {
        grid-template-columns: 1fr;
    }

    .services {
        padding-top: 110px;
        padding-bottom: 110px;
    }

    .service-item h3 {
        font-size: 20px;
    }

    .about {
        padding-top: 110px;
        padding-bottom: 110px;
    }

    .commission {
        padding-top: 110px;
        padding-bottom: 110px;
    }

    .commission-steps {
        grid-template-columns: 1fr;
    }

    .commission-step {
        border-right: none;
        border-bottom: 1px solid #39332c;
    }

    .commission-step:last-child {
        border-bottom: none;
    }

    .modal {
        padding: 15px;
    }

    .modal-box {
        padding: 40px 25px;
        max-height: 92vh;
    }

    footer {
        padding: 50px 20px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}/* =========================
   PACKAGES
========================= */

.packages {
    max-width: 1200px;
    margin: 0 auto;

    padding: 160px 40px;

    border-top: 1px solid #29251f;

    text-align: center;
}

.packages-header {
    max-width: 800px;
    margin: 0 auto;
}

.packages-header h2 {
    margin: 0;

    color: #e8dfcf;

    font-size: clamp(45px, 6vw, 75px);
    line-height: 1.05;
    font-weight: normal;
}

.package-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    margin-top: 80px;

    text-align: left;
}

.package-card {
    min-height: 470px;

    padding: 40px 35px;

    border: 1px solid #39332c;

    background: #181512;

    transition: 0.3s;
}

.package-card:hover {
    transform: translateY(-6px);

    border-color: #706555;
}

.package-card.featured {
    background: #211c17;

    border-color: #706555;
}

.package-number {
    margin: 0 0 45px;

    color: #625b51;

    font-size: 11px;
    letter-spacing: 2px;
}

.package-card h3 {
    margin: 0 0 10px;

    color: #e8dfcf;

    font-size: 38px;
    font-weight: normal;
}

.package-level {
    margin: 0;

    color: #a99a83;

    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.package-description {
    min-height: 75px;

    margin: 30px 0;

    color: #8f877d;

    font-size: 14px;
    line-height: 1.7;
}

.package-line {
    width: 100%;
    height: 1px;

    margin-bottom: 25px;

    background: #39332c;
}

.package-card ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.package-card li {
    position: relative;

    margin-bottom: 15px;
    padding-left: 18px;

    color: #c2b8aa;

    font-size: 13px;
}

.package-card li::before {
    content: "—";

    position: absolute;
    left: 0;

    color: #625b51;
}

@media (max-width: 800px) {

    .package-grid {
        grid-template-columns: 1fr;
    }

    .package-card {
        min-height: auto;
    }

    .packages {
        padding-top: 110px;
        padding-bottom: 110px;
    }

}.package-delivery {
    margin-top: 30px;

    color: #8f877d;

    font-size: 12px;
    letter-spacing: 1px;
}

.package-delivery strong {
    color: #e8dfcf;
    font-weight: normal;
}.package-delivery {
    margin-top: 30px;
    padding-top: 20px;

    border-top: 1px solid #39332c;

    color: #8f877d;

    font-size: 12px;
    letter-spacing: 1px;
}

.package-delivery strong {
    color: #e8dfcf;
    font-weight: normal;
}/* =========================
   LANGUAGE SWITCHER
========================= */

.language-switcher {
    margin-left: 25px;

    padding: 7px 10px;

    border: 1px solid #39332c;

    background: transparent;

    color: #8f877d;

    font-family: inherit;

    font-size: 10px;

    letter-spacing: 1px;

    cursor: pointer;

    transition: 0.3s;
}

.language-switcher:hover {
    color: #e8dfcf;
    border-color: #706555;
}


/* Arabic layout */

html[dir="rtl"] nav {
    flex-direction: row-reverse;
}

html[dir="rtl"] .nav-links {
    flex-direction: row-reverse;
}

html[dir="rtl"] .language-switcher {
    margin-left: 0;
    margin-right: 25px;
}

html[dir="rtl"] .services-list {
    text-align: right;
}

html[dir="rtl"] .service-item:hover {
    padding-left: 10px;
    padding-right: 20px;
}

html[dir="rtl"] .map-card {
    text-align: right;
}

html[dir="rtl"] .package-card {
    text-align: right;
}

html[dir="rtl"] .package-card li {
    padding-left: 0;
    padding-right: 18px;
}

html[dir="rtl"] .package-card li::before {
    left: auto;
    right: 0;
}

html[dir="rtl"] .commission-step {
    text-align: center;
}

html[dir="rtl"] .form-group {
    text-align: right;
}

html[dir="rtl"] .footer-content {
    direction: rtl;
}


@media (max-width: 700px) {

    .language-switcher {
        margin: 0;
    }

    html[dir="rtl"] .language-switcher {
        margin: 0;
    }

}/* =========================
   ACCOUNT
========================= */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.account-button {
    padding: 9px 14px;

    border: 1px solid #39332c;

    background: transparent;

    color: #aaa096;

    font-family: inherit;

    font-size: 11px;

    letter-spacing: 1px;

    cursor: pointer;

    transition: 0.3s;
}

.account-button:hover {
    color: #e8dfcf;
    border-color: #706555;
}

.auth-box {
    max-width: 600px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.auth-switch {
    margin-top: 25px;

    color: #625b51;

    font-size: 13px;
}

.auth-switch button {
    padding: 0;

    border: none;

    background: transparent;

    color: #a99a83;

    font-family: inherit;

    font-size: inherit;

    cursor: pointer;
}

.auth-switch button:hover {
    color: #e8dfcf;
}

.auth-message {
    min-height: 20px;

    margin-top: 20px;

    color: #a99a83;

    font-size: 13px;

    line-height: 1.6;
}


@media (max-width: 700px) {

    .nav-actions {
        gap: 8px;
    }

    .account-button {
        font-size: 10px;
        padding: 8px 10px;
    }

}/* =========================
   ACCOUNT DASHBOARD
========================= */

.account-dashboard {
    max-width: 700px;
}

.account-info {
    margin-top: 40px;

    border-top: 1px solid #39332c;
    border-bottom: 1px solid #39332c;
}

.account-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 0;

    border-bottom: 1px solid #39332c;
}

.account-info-row:last-child {
    border-bottom: none;
}

.account-info-row span {
    color: #625b51;

    font-size: 11px;
    letter-spacing: 2px;
}

.account-info-row strong {
    color: #d0c5b4;

    font-size: 13px;
    font-weight: normal;
}

.dashboard-section {
    margin-top: 45px;
}

.dashboard-section-title {
    margin: 0 0 20px;

    color: #a99a83;

    font-size: 11px;
    letter-spacing: 3px;
}

.empty-requests {
    padding: 30px;

    border: 1px solid #39332c;

    background: #15120f;
}

.empty-requests p {
    margin: 0 0 25px;

    color: #8f877d;

    font-size: 14px;
    line-height: 1.7;
}

.logout-button {
    margin-top: 35px;

    border: none;
    background: transparent;

    color: #625b51;

    font-family: inherit;

    font-size: 11px;
    letter-spacing: 2px;

    cursor: pointer;

    transition: 0.3s;
}

.logout-button:hover {
    color: #e8dfcf;
}

html[dir="rtl"] .account-info-row {
    direction: rtl;
}

html[dir="rtl"] .empty-requests {
    text-align: right;
}

@media (max-width: 700px) {

    .account-dashboard {
        max-width: 100%;
    }

    .account-info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

}.request-card {
    padding: 20px;
    margin-bottom: 12px;

    border: 1px solid #39332c;

    background: #1c1814;
}

.request-card:last-child {
    margin-bottom: 0;
}

.request-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;
}

.request-card-header strong {
    color: #e8dfcf;

    font-size: 15px;
    font-weight: normal;
}

.request-card-header span {
    color: #a99a83;

    font-size: 11px;
    letter-spacing: 1px;
}

.request-card p {
    margin: 10px 0 5px;

    color: #d0c5b4;

    font-size: 13px;
}

.request-card small {
    color: #625b51;

    font-size: 11px;
}/* =========================
   ADMIN DASHBOARD
========================= */

.admin-box {
    max-width: 900px;
}

.admin-requests {
    display: flex;
    flex-direction: column;
    gap: 15px;

    margin-top: 35px;
}

.admin-request-card {
    padding: 25px;

    border: 1px solid #39332c;

    background: #15120f;
}

.admin-request-top {
    display: flex;

    justify-content: space-between;
    align-items: flex-start;

    gap: 20px;
}

.admin-request-number {
    margin: 0 0 8px;

    color: #625b51;

    font-size: 10px;
    letter-spacing: 2px;
}

.admin-request-card h3 {
    margin: 0;

    color: #e8dfcf;

    font-size: 22px;
    font-weight: normal;
}

.admin-status {
    padding: 9px 12px;

    border: 1px solid #39332c;

    background: #1c1814;

    color: #d0c5b4;

    font-family: inherit;

    font-size: 11px;

    cursor: pointer;
}

.admin-request-details {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;

    margin-top: 25px;

    padding-top: 20px;

    border-top: 1px solid #29251f;
}

.admin-request-details div {
    display: flex;
    flex-direction: column;

    gap: 7px;
}

.admin-request-details span,
.admin-description > span {
    color: #625b51;

    font-size: 9px;

    letter-spacing: 2px;
}

.admin-request-details strong {
    color: #d0c5b4;

    font-size: 12px;

    font-weight: normal;

    word-break: break-word;
}

.admin-description {
    margin-top: 25px;

    padding-top: 20px;

    border-top: 1px solid #29251f;
}

.admin-description p {
    margin: 10px 0 0;

    color: #8f877d;

    font-size: 13px;

    line-height: 1.7;
}

.admin-loading,
.admin-error {
    color: #8f877d;

    font-size: 13px;
}


@media (max-width: 700px) {

    .admin-request-top {
        flex-direction: column;
    }

    .admin-status {
        width: 100%;
    }

    .admin-request-details {
        grid-template-columns: 1fr 1fr;
    }

}/* =========================
   CHAT
========================= */

.chat-box {
    max-width: 750px;
}

.chat-messages {
    height: 400px;

    overflow-y: auto;

    margin-top: 30px;
    padding: 25px;

    border: 1px solid #39332c;

    background: #15120f;

    display: flex;
    flex-direction: column;

    gap: 15px;
}

.chat-message {
    max-width: 75%;

    padding: 14px 16px;

    border: 1px solid #39332c;

    background: #1c1814;
}

.chat-message.sent {
    align-self: flex-end;

    border-color: #706555;
}

.chat-message.received {
    align-self: flex-start;
}

.chat-message p {
    margin: 0 0 8px;

    color: #d0c5b4;

    font-size: 14px;
    line-height: 1.6;

    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.chat-message small {
    color: #625b51;

    font-size: 10px;
}

.chat-form {
    display: flex;

    gap: 12px;

    margin-top: 20px;
}

.chat-form textarea {
    flex: 1;

    min-height: 70px;

    padding: 14px;

    border: 1px solid #39332c;

    background: #211c17;

    color: #e8dfcf;

    font-family: inherit;

    font-size: 14px;

    resize: vertical;

    outline: none;
}

.chat-form textarea:focus {
    border-color: #706555;
}

.chat-form .button {
    align-self: flex-end;
}

.chat-empty,
.chat-loading,
.chat-error {
    margin: auto;

    color: #625b51;

    font-size: 13px;
    text-align: center;
}

.request-chat-button,
.admin-chat-button {
    margin-top: 18px;
}


/* =========================
   MOBILE CHAT
========================= */

@media (max-width: 700px) {

    .chat-box {
        max-width: 100%;
    }

    .chat-messages {
        height: 50vh;

        padding: 15px;
    }

    .chat-message {
        max-width: 88%;
    }

    .chat-form {
        flex-direction: column;
    }

    .chat-form .button {
        width: 100%;
    }

}/* =========================
   CHAT IMAGE UPLOAD
========================= */

.chat-form {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin-top: 15px;
}

.chat-attach-button {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border: 1px solid #39332c;

    background: #211c17;

    color: #aaa096;

    font-size: 20px;

    cursor: pointer;

    transition: 0.3s;
}

.chat-attach-button:hover {
    color: #e8dfcf;
    border-color: #706555;
}


/* =========================
   IMAGE PREVIEW
========================= */

.chat-image-preview {
    position: relative;

    width: fit-content;

    margin-top: 15px;
}

.chat-image-preview img {
    display: block;

    max-width: 180px;
    max-height: 140px;

    object-fit: cover;

    border: 1px solid #39332c;
}

.chat-image-preview button {
    position: absolute;

    top: -10px;
    right: -10px;

    width: 26px;
    height: 26px;

    border: 1px solid #39332c;

    border-radius: 50%;

    background: #15120f;

    color: #d0c5b4;

    font-size: 18px;

    line-height: 1;

    cursor: pointer;
}


/* =========================
   CHAT MESSAGE IMAGE
========================= */

.chat-message-image {
    display: block;

    width: 100%;
    max-width: 350px;

    max-height: 350px;

    margin-top: 10px;

    object-fit: contain;

    border: 1px solid #39332c;

    cursor: pointer;
}

.chat-message-image:hover {
    opacity: 0.9;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {

    .chat-form {
        align-items: stretch;
    }

    .chat-attach-button {
        width: 100%;
        height: 42px;
    }

    .chat-form textarea {
        min-height: 80px;
    }

    .chat-message-image {
        max-width: 100%;
    }

}/* =========================
   CHAT MESSAGE COLORS
========================= */

/* Your own messages */
.chat-message.sent {
    align-self: flex-end;

    background: #332c23;

    border: 1px solid #7d6d56;

    color: #efe6d6;

    border-radius: 14px 14px 4px 14px;
}


/* Other person's messages */
.chat-message.received {
    align-self: flex-start;

    background: #1b1815;

    border: 1px solid #39332c;

    color: #c8beb0;

    border-radius: 14px 14px 14px 4px;
}


/* Message text */
.chat-message.sent p,
.chat-message.received p {
    color: inherit;

    margin: 0 0 8px;

    line-height: 1.65;
}


/* Time */
.chat-message.sent small {
    color: #b8a990;
}

.chat-message.received small {
    color: #6f675d;
}


/* Images */
.chat-message.sent .chat-message-image,
.chat-message.received .chat-message-image {
    border-radius: 10px;
}


/* Hover */
.chat-message.sent:hover,
.chat-message.received:hover {
    transform: translateY(-1px);

    transition: 0.2s ease;
}/* =========================
   CHAT MESSAGE COLORS
========================= */

/* YOUR MESSAGES */
.chat-message.sent {
    align-self: flex-end;
    background: #202830;
    border: 1px solid #536575;
    color: #d5dce2;
    border-radius: 14px 14px 4px 14px;
    box-shadow:
        0 4px 14px rgba(0, 0, 0, 0.14);
}


/* OTHER PERSON'S MESSAGES */
.chat-message.received {
    align-self: flex-start;
    background: #3a3021;
    border: 1px solid #9a7b45;
    color: #f1e4cf;
    border-radius: 14px 14px 14px 4px;
    box-shadow:
        0 4px 14px rgba(0, 0, 0, 0.18);
}


/* TEXT */
.chat-message.sent p,
.chat-message.received p {
    color: inherit;
    margin: 0 0 8px;
    line-height: 1.65;
}


/* TIME */
.chat-message.sent small {
    color: #8e9da9;
}

.chat-message.received small {
    color: #c7ad80;
}


/* IMAGES */
.chat-message.sent .chat-message-image {
    border: 1px solid #536575;
}

.chat-message.received .chat-message-image {
    border: 1px solid #9a7b45;
}


/* HOVER */
.chat-message.sent:hover,
.chat-message.received:hover {
    transform: translateY(-1px);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}/* =========================
   CHAT MESSAGE ALIGNMENT
========================= */

/* Your own messages = LEFT */
.chat-message.sent {
    align-self: flex-start;
}

/* The other person's messages = RIGHT */
.chat-message.received {
    align-self: flex-end;
}


/* =========================================================
   LOST TRAVELER'S JOURNEY — FINAL UI POLISH
   Legal pages / tracker / admin actions / uploads / footer
========================================================= */

/* =========================
   LEGAL CHECKBOX
========================= */

.legal-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #8f877d;
    font-size: 12px;
    line-height: 1.7;
    cursor: pointer;
    margin-top: -5px;
}

.legal-checkbox input {
    flex: 0 0 auto;
    width: 16px !important;
    height: 16px;
    margin: 3px 0 0;
    accent-color: #9a7b45;
    cursor: pointer;
}

.legal-checkbox > span {
    display: inline;
}

.legal-inline-button {
    padding: 0;
    margin: 0 3px;
    border: 0;
    background: transparent;
    color: #c7ad80;
    font-family: inherit;
    font-size: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}

.legal-inline-button:hover {
    color: #e8dfcf;
}


/* =========================
   LEGAL MODALS
========================= */

.legal-modal .modal-box {
    max-width: 850px;
}

.legal-box {
    max-width: 850px;
}

.legal-updated {
    margin: 12px 0 35px;
    color: #625b51;
    font-size: 10px;
    letter-spacing: 1.5px;
}

.legal-content {
    color: #aaa096;
}

.legal-content h3 {
    margin: 30px 0 10px;
    color: #d0c5b4;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.45;
}

.legal-content h3:first-child {
    margin-top: 0;
}

.legal-content p {
    margin: 0;
    color: #8f877d;
    font-size: 14px;
    line-height: 1.9;
}

.legal-content p + h3 {
    margin-top: 34px;
}

html[dir="rtl"] .legal-content {
    text-align: right;
}

html[dir="rtl"] .legal-updated {
    text-align: right;
}


/* =========================
   REQUEST CARD POLISH
========================= */

.request-card {
    position: relative;
    overflow: hidden;
    padding: 24px;
    transition:
        border-color 0.25s ease,
        transform 0.25s ease,
        background 0.25s ease;
}

.request-card:hover {
    border-color: #625b51;
    background: #1f1a16;
    transform: translateY(-2px);
}

.request-card-header > span {
    padding: 5px 8px;
    border: 1px solid rgba(154, 123, 69, 0.28);
    background: rgba(154, 123, 69, 0.04);
}


/* =========================
   PROJECT TRACKER
========================= */

.ltj-tracker-wrap {
    width: 100%;
    margin-top: 20px;
    padding: 19px 18px;
    border: 1px solid #332e28;
    background:
        linear-gradient(
            180deg,
            rgba(31, 26, 22, 0.92),
            rgba(21, 18, 15, 0.92)
        );
}

.ltj-tracker-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 20px;
}

.ltj-tracker-title {
    color: #625b51;
    font-size: 9px;
    letter-spacing: 2.5px;
}

.ltj-tracker-status {
    padding: 5px 9px;
    border: 1px solid #39332c;
    color: #c7ad80;
    font-size: 9px;
    letter-spacing: 1px;
}

.ltj-tracker {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
}

.ltj-tracker::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 9%;
    right: 9%;
    height: 1px;
    background: #39332c;
    z-index: 0;
}

.ltj-step {
    position: relative;
    z-index: 1;
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    text-align: center;
}

.ltj-step-dot {
    width: 23px;
    height: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #3e3831;
    border-radius: 50%;
    background: #171411;
    color: #625b51;
    font-size: 8px;
    transition:
        border-color 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease;
}

.ltj-step span {
    max-width: 88px;
    color: #625b51;
    font-size: 8px;
    line-height: 1.4;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.ltj-step.complete .ltj-step-dot {
    border-color: #7b6a53;
    color: #c7ad80;
}

.ltj-step.complete span {
    color: #958977;
    opacity: 0.9;
}

.ltj-step.current .ltj-step-dot {
    border-color: #c7ad80;
    color: #c7ad80;
    box-shadow:
        0 0 0 4px rgba(199, 173, 128, 0.06);
}

.ltj-step.current span {
    color: #d0c5b4;
    opacity: 1;
}

.ltj-status-message {
    margin-top: 17px;
    padding-top: 15px;
    border-top: 1px solid #29251f;
    color: #8f877d;
    font-size: 12px;
    line-height: 1.7;
}

.ltj-message-changes {
    border-left: 2px solid #9a7b45;
    padding-left: 12px;
}

.ltj-message-rejected {
    border-left: 2px solid #8f655e;
    padding-left: 12px;
}

html[dir="rtl"] .ltj-message-changes,
html[dir="rtl"] .ltj-message-rejected {
    border-left: none;
    border-right: 2px solid #9a7b45;
    padding-left: 0;
    padding-right: 12px;
}


/* =========================
   ADMIN ACTIONS
========================= */

.admin-action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 22px 0 2px;
}

.admin-quick-button {
    padding: 9px 12px;
    border: 1px solid #39332c;
    background: #181512;
    color: #aaa096;
    font-family: inherit;
    font-size: 10px;
    letter-spacing: 1px;
    cursor: pointer;
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.2s ease;
}

.admin-quick-button:hover {
    transform: translateY(-1px);
    color: #e8dfcf;
}

.admin-quick-button.approve:hover {
    border-color: #6b7a69;
    background: #202720;
}

.admin-quick-button.changes:hover {
    border-color: #806b45;
    background: #262017;
}

.admin-quick-button.reject:hover {
    border-color: #7a5b58;
    background: #251b1a;
}

.admin-quick-button:disabled {
    opacity: 0.45;
    cursor: wait;
    transform: none;
}

.status-area {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.save-status-button {
    padding: 9px 12px;
    font-size: 10px;
    letter-spacing: 1px;
}


/* =========================
   STATUS COLORS
========================= */

.status-pending {
    color: #b7aa93 !important;
}

.status-in-review {
    color: #b7aa93 !important;
}

.status-approved {
    color: #8ca38b !important;
}

.status-request-changes {
    color: #c6a96d !important;
}

.status-rejected {
    color: #b4837c !important;
}

.status-in-progress {
    color: #a5b3c0 !important;
}

.status-completed {
    color: #a7b89b !important;
}


/* =========================
   SELECT / FILE INPUT
========================= */

.form-group input[type="file"] {
    padding: 11px;
    color: #aaa096;
}

.form-group input[type="file"]::file-selector-button {
    margin-right: 10px;
    padding: 8px 11px;
    border: 1px solid #39332c;
    background: #211c17;
    color: #d0c5b4;
    font-family: inherit;
    font-size: 11px;
    cursor: pointer;
}

.form-group input[type="file"]::file-selector-button:hover {
    border-color: #706555;
}

.file-help {
    color: #625b51;
    font-size: 10px;
    line-height: 1.6;
}


/* =========================
   CHAT POLISH
========================= */

.chat-message {
    box-shadow:
        0 5px 18px rgba(0, 0, 0, 0.10);
}

.chat-message.sent {
    background: #202830;
    border-color: #536575;
    color: #d5dce2;
}

.chat-message.received {
    background: #3a3021;
    border-color: #9a7b45;
    color: #f1e4cf;
}

.chat-message-image {
    border-radius: 10px;
}

.chat-message-image:hover {
    opacity: 0.95;
}


/* =========================
   FOOTER LEGAL LINKS
========================= */

.footer-links {
    align-items: center;
    flex-wrap: wrap;
}

.footer-links button {
    padding: 0;
    border: 0;
    background: transparent;
    color: #625b51;
    font-family: inherit;
    font-size: 12px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-links button:hover {
    color: #e8dfcf;
}


/* =========================
   NAV RESPONSIVE POLISH
========================= */

@media (max-width: 900px) {

    nav {
        flex-wrap: wrap;
        gap: 18px;
    }

    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .nav-actions {
        margin-left: auto;
    }

    html[dir="rtl"] .nav-actions {
        margin-left: 0;
        margin-right: auto;
    }

}


@media (max-width: 700px) {

    .ltj-tracker-wrap {
        padding: 15px 11px;
    }

    .ltj-tracker::before {
        left: 7%;
        right: 7%;
    }

    .ltj-step span {
        max-width: 62px;
        font-size: 7px;
    }

    .ltj-step-dot {
        width: 21px;
        height: 21px;
        font-size: 7px;
    }

    .admin-action-buttons {
        display: grid;
        grid-template-columns: 1fr;
    }

    .admin-quick-button {
        width: 100%;
    }

    .status-area {
        width: 100%;
    }

    .status-area .admin-status,
    .status-area .save-status-button {
        width: auto;
    }

    .legal-modal .modal-box {
        padding: 35px 22px;
    }

    .legal-content h3 {
        font-size: 15px;
    }

    .legal-content p {
        font-size: 13px;
        line-height: 1.8;
    }

    .legal-checkbox {
        font-size: 11px;
    }

    .footer-links {
        gap: 15px 20px;
    }

}


@media (max-width: 480px) {

    .ltj-tracker span {
        display: block;
        min-height: 28px;
    }

    .request-card {
        padding: 18px;
    }

    .ltj-tracker-wrap {
        margin-top: 16px;
    }

}
/* =========================================================
   PERFORMANCE POLISH
   Keeps the visual style while reducing rendering cost
   ========================================================= */


/* -------------------------
   Better rendering for
   long sections
------------------------- */

.work,
.services,
.packages,
.about,
.commission {
    content-visibility: auto;

    contain-intrinsic-size:
        800px;
}


/* -------------------------
   Smoother page rendering
------------------------- */

html {
    scroll-behavior: smooth;

    text-rendering: optimizeLegibility;
}


/* -------------------------
   Reduce expensive modal
   background effects
------------------------- */

.modal-overlay {
    backdrop-filter: none;

    -webkit-backdrop-filter: none;

    background:
        rgba(0, 0, 0, 0.84);
}


/* -------------------------
   Lighter modal shadow
------------------------- */

.modal-box {
    box-shadow:
        0 18px 55px
        rgba(0, 0, 0, 0.48);
}


/* -------------------------
   Avoid unnecessary paint
   outside active modals
------------------------- */

.modal:not(.active) {
    visibility: hidden;
}


/* -------------------------
   Make image rendering
   efficient when real maps
   are added later
------------------------- */

.map-placeholder img,
.chat-message-image,
.map-lightbox-image {
    image-rendering:
        auto;
}


/* -------------------------
   Don't animate layout-heavy
   properties unnecessarily
------------------------- */

.map-placeholder,
.package-card,
.button,
.service-item,
.work-link,
.modal-close {
    transition-property:
        background-color,
        color,
        border-color,
        opacity,
        transform;

    transition-duration:
        0.25s;

    transition-timing-function:
        ease;
}


/* -------------------------
   Respect reduced motion
------------------------- */

@media (
    prefers-reduced-motion: reduce
) {

    html {
        scroll-behavior:
            auto;
    }


    *,
    *::before,
    *::after {

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;

        scroll-behavior:
            auto !important;

    }

}


/* -------------------------
   Mobile rendering
------------------------- */

@media (
    max-width: 650px
) {

    .modal-overlay {
        background:
            rgba(0, 0, 0, 0.88);
    }


    .modal-box {
        box-shadow:
            0 14px 40px
            rgba(0, 0, 0, 0.42);
    }

}
.admin-quick-button.delete {
    border-color: #6b302c;
}

.admin-quick-button.delete:hover {
    border-color: #a94740;
}
/* =========================
   WEBSITE PREVIEW NOTICE
========================= */

.website-preview {
    display: inline-block;

    padding: 9px 18px;
    margin-bottom: 35px;

    border: 1px solid #39332c;

    color: #8f877d;

    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;

    background: rgba(28, 24, 20, 0.35);
}


/* =========================
   BUSINESS DETAILS
========================= */

.business-details {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    width: 100%;
}


/* =========================
   BUSINESS DETAIL
========================= */

.business-detail {
    box-sizing: border-box;

    padding: 18px 38px;

    border-inline-end:
        1px solid rgba(218, 202, 174, 0.18);
}


/* Remove divider from last item */

.business-detail:last-child {
    border-inline-end: none;
}


/* =========================
   BUSINESS PHONE
========================= */

.business-phone {
    color: inherit;

    text-decoration: none;

    transition:
        opacity 0.25s ease;
}

.business-phone:hover {
    opacity: 0.7;
}

.business-phone:focus {
    outline: none;
}


/* =========================
   FREELANCE CERTIFICATE
========================= */

.freelance-certificate {
    color: inherit;

    text-decoration: none;

    cursor: pointer;

    transition:
        opacity 0.25s ease;
}

.freelance-certificate:hover {
    opacity: 0.7;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

    .business-details {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .business-detail {
        padding: 18px 25px;
    }

}


@media (max-width: 600px) {

    .business-details {
        grid-template-columns: 1fr;
    }

    .business-detail {
        padding: 18px 20px;

        border-inline-end: none;

        border-bottom:
            1px solid rgba(218, 202, 174, 0.18);
    }

    .business-detail:last-child {
        border-bottom: none;
    }

}
.logo img {
    height: 120px;
    width: auto;
    display: block;
}