/* الألوان والتنسيقات المخصصة فقط */
.contact-section {
    margin-top: calc(170 / 16 * 1rem);
    margin-bottom: calc(103 / 16 * 1rem);
}

/* عناوين ومعلومات الجانب الأيمن */
.contact-title {
    color: var(--main);
    font-size: calc(60 / 16 * 1rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.contact-desc {
    color: var(--main);
    font-size: calc(20 / 16 * 1rem);
    line-height: 1.7;
    max-width: 459px;
    margin-bottom: calc(48 / 16 * 1rem);
}

.info-list-custom {
    list-style: none;
    padding: 0;
}

.info-label-custom {
    display: block;
    color: #c1990b; /* اللون الأصفر */
    width: fit-content;
    padding: 3px 15px;
    background-color: #fef9e7;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: calc(24 / 16 * 1rem);
    position: relative;
}

.info-label-custom::before {
    content: "";
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #c1990b;

    border-radius: 2px;
}

html:lang(en) .info-label-custom::before {
    left: 5px !important;
}

.info-list-custom a,
.info-list-custom p {
    color: var(--main);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
}

.social-icons-box {
    display: flex;
    gap: 1rem;
    margin-top: 15px;
}

.social-icons-box a {
    color: var(--main);
    font-size: 1.5rem;
    transition: 0.3s ease;
}

.social-icons-box a:hover {
    color: var(--sec);
}

/* تنسيق كارت الفورم */
.contact-form-box {
    border: 1px solid #f1f2f4;
    background: #fdfdfd;
    padding: calc(45 / 16 * 1rem);
    border-radius: 40px;
}

.custom-label {
    display: block;
    color: var(--main);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 4px;
}

.custom-input {
    width: 100%;
    padding: 14px 25px;
    border: 1px solid #e2e8f0;
    border-radius: 50px; /* استدارة كاملة */
    outline: none;
    transition: 0.3s;
}

/* Placeholder باللون الأزرق المخصص */
.custom-input::placeholder {
    color: var(--main);
    opacity: 0.5;

    font-size: 14px;
}

.custom-input:focus {
    border-color: var(--main);
    box-shadow: 0 0 0 4px rgba(0, 74, 153, 0.05);
}

.custom-textarea {
    border-radius: 25px;
    height: 140px;
    resize: none;
}

/* Checkbox */
.checkbox-container-custom {
    display: flex;
    gap: 12px;
    align-items: center;
}

.checkbox-container-custom label {
    font-size: 0.85rem;
    color: var(--main);
    opacity: 0.5;
    cursor: pointer;
}

.map {
    margin-bottom: 54px;
    border-radius: 38px;
}

.success-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #22c55e;
    color: white;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 9999;
}

.success-toast i {
    font-size: 1rem;
}
.success-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.hero-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: var(--main);
    padding: 0.6rem; /* مساحة أقل من اليمين بسبب الدائرة */
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    border: none;
    color: white;
}

/* النص داخل الزر */
.hero-btn-text {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
}

/* الدائرة الصفراء المحيطة بالسهم */
.hero-btn-icon-wrapper {
    width: 30px;
    height: 30px;
    background-color: var(--sec);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

/* أيقونة السهم نفسه */
.hero-btn-icon-wrapper i {
    font-size: 1rem;
    color: var(--main);
}
