:root {
    --accent: #e3004e;
    --text: #ffffff;
    --border: rgba(255, 255, 255, 0.4);
    --font-display: "Cairo", sans-serif;
    --font-mono: "IBM Plex Mono", monospace;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-display);
    color: var(--text);
    background-color: #1c1c1c;
    line-height: 1.3;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

.page {
    min-height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url("assets/background-scaled.jpg");
    background-position: top right;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 30px;
    display: flex;
}

.page__inner {
    position: relative;
    width: 100%;
    border-top: 1px solid var(--border);
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: calc(100vh - 60px);
}

.signal-icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 110px;
    height: auto;
    margin-top: 30px;
}

.almcor-logo {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 142px;
    height: auto;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    max-width: 60%;
}

.content__row {
    margin: 0;
}

.content__row--top {
    margin-top: 0;
}

.address,
.details,
.contact__details {
    margin: 0;
    font-family: var(--font-display);
}

.address {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 400;
}

.address strong {
    font-weight: 700;
}

.details {
    font-size: 56px;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.btn {
    display: inline-block;
    background-color: var(--accent);
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    line-height: 38px;
    padding: 18px 44px;
    border: 2px solid var(--accent);
    border-radius: 120px;
    transition: background-color 0.25s ease, color 0.25s ease;
    cursor: pointer;
    align-self: flex-start;
}

.btn:hover,
.btn:focus {
    background-color: transparent;
    color: #ffffff;
}

.contact-row {
    display: flex;
}

.contact {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.contact--jll {
    align-items: flex-start;
}

.contact__logo {
    flex-shrink: 0;
}

.contact__logo--mckinlays {
    width: 110px;
    height: auto;
}

.contact__logo--jll {
    width: 74px;
    height: auto;
}

.contact__details {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
    margin: 0;
}

.contact__details strong {
    font-weight: 700;
}

.contact--jll .contact__details {
    margin-right: 60px;
}

.contact--jll .contact__details:last-child {
    margin-right: 0;
}

@media (max-width: 1024px) {
    .content {
        max-width: 70%;
    }

    .details {
        font-size: 44px;
    }

    .address {
        font-size: 24px;
    }

    .btn {
        font-size: 28px;
        line-height: 30px;
        padding: 16px 36px;
    }
}

@media (max-width: 767px) {
    .page {
        padding: 20px;
    }

    .page__inner {
        padding-top: 20px;
        min-height: calc(100vh - 40px);
    }

    .content {
        max-width: 100%;
    }

    .signal-icon {
        width: 60px;
        margin-top: 20px;
    }

    .almcor-logo {
        position: static;
        width: 120px;
        margin-top: 30px;
    }

    .address {
        font-size: 18px;
    }

    .details {
        font-size: 28px;
    }

    .btn {
        font-size: 22px;
        line-height: 24px;
        padding: 14px 28px;
    }

    .contact {
        flex-direction: column;
        gap: 12px;
    }

    .contact--jll {
        flex-direction: column;
    }

    .contact--jll .contact__details {
        margin-right: 0;
        margin-bottom: 16px;
    }

    .contact__logo--mckinlays {
        width: 90px;
    }

    .contact__logo--jll {
        width: 60px;
    }
}
