﻿:root {
    --gh-red: #db1f2b;
    --gh-red-dark: #b91620;
    --gh-card: #ffffff;
    --gh-border: rgba(0,0,0,.08);
    --gh-text: #111;
    --gh-muted: rgba(0,0,0,.62);
}

/* Breadcrumb upgrade */
.gh-breadcrumb {
    border-bottom: 1px solid rgba(219,31,43,.15);
}

    .gh-breadcrumb .breadcrumb__title {
        font-weight: 800;
        letter-spacing: .2px;
    }

    .gh-breadcrumb .breadcrumb__list span,
    .gh-breadcrumb .breadcrumb__list a {
        color: rgba(0,0,0,.65);
        text-decoration: none;
        font-weight: 600;
    }

        .gh-breadcrumb .breadcrumb__list a:hover {
            color: var(--gh-red);
            text-decoration: underline;
            text-underline-offset: 4px;
        }

/* Page layout */
.gh-contact-wrap {
    margin-top: 8px;
}

.gh-card {
    border: 1px solid var(--gh-border);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0,0,0,.06);
    overflow: hidden;
}

.gh-card__head {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(219,31,43,.12);
}

.gh-card__title {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    color: var(--gh-text);
}

.gh-card__body {
    padding: 20px;
}

/* Form inputs */
.gh-field {
    margin-bottom: 14px;
}

    .gh-field label {
        display: block;
        margin-bottom: 8px;
        font-size: 13px;
        font-weight: 700;
        color: rgba(0,0,0,.70);
    }

.gh-input, .gh-textarea {
    width: 100%;
    border: 1px solid rgba(0,0,0,.10);
    border-radius: 14px;
    padding: 12px 14px;
    outline: none;
    transition: .2s ease;
    font-size: 14px;
}

.gh-textarea {
    min-height: 140px;
    resize: vertical;
}

    .gh-input:focus, .gh-textarea:focus {
        border-color: rgba(219,31,43,.45);
        box-shadow: 0 0 0 4px rgba(219,31,43,.10);
    }

/* Button */
.gh-btn {
    border: none;
    width: 100%;
    padding: 13px 16px;
    border-radius: 14px;
    color: #fff;
    font-weight: 800;
    font-size: 15px;
    transition: .2s ease;
    box-shadow: 0 14px 30px rgba(219,31,43,.18);
    background: linear-gradient(180deg, var(--gh-red), var(--gh-red-dark));
}

    .gh-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 38px rgba(219,31,43,.22);
    }

/* Info cards */
.gh-info-grid {
    display: grid;
    gap: 12px;
}

.gh-info-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,.08);
    background: #fff;
    transition: .2s ease;
}

    .gh-info-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 40px rgba(0,0,0,.06);
        border-color: rgba(219,31,43,.22);
    }

.gh-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(219,31,43,.18);
    color: var(--gh-red);
    flex: 0 0 44px;
    font-size: 18px;
}

.gh-info-text .k {
    font-size: 12px;
    font-weight: 800;
    color: rgba(0,0,0,.55);
    margin-bottom: 2px;
}

.gh-info-text a, .gh-info-text .v {
    font-size: 14px;
    font-weight: 800;
    color: rgba(0,0,0,.86);
    text-decoration: none;
    direction: ltr;
    unicode-bidi: plaintext;
}

    .gh-info-text a:hover {
        color: var(--gh-red);
        text-decoration: underline;
        text-underline-offset: 4px;
    }

/* Social icons only */
.gh-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
}

    .gh-social a {
        width: 44px;
        height: 44px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(0,0,0,.10);
        color: rgba(0,0,0,.75);
        transition: .2s ease;
        box-shadow: 0 12px 26px rgba(0,0,0,.05);
        text-decoration: none;
        font-size: 18px;
    }

        .gh-social a:hover {
            border-color: rgba(219,31,43,.25);
            color: var(--gh-red);
            transform: translateY(-2px);
        }

/* Sticky info on desktop (nice UX) */
@media (min-width: 992px) {
    .gh-sticky {
        position: sticky;
        top: 110px; /* مناسب للهيدر عندك */
    }
}
