.product-header {
    margin-top: calc(170 / 16 * 1rem);
    margin-bottom: calc(103 / 16 * 1rem);
}
.product-wraper {
    background-image:
        linear-gradient(180deg, rgba(0, 0, 0, 0) 50.13%, #000000 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
        url("../images/fa14b19440af2fcacd21dd3e7e0c02ebb6337be0.webp");
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    height: 354px;

    position: relative;
    overflow: hidden;
}

.product-info h3 {
    font-size: calc(60 / 16 * 1rem);
    margin-bottom: 1rem;
}

.product-info p {
    font-size: calc(24 / 16 * 1rem);
    max-width: 621px;
    margin: auto;
    margin-bottom: 0;
}

/*  */

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

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

.product-desc {
    color: var(--text);
    font-size: calc(24 / 16 * 1rem);
    line-height: 1.7;
    margin-bottom: calc(32 / 16 * 1rem);
}

.product-benifits {
    color: var(--main);
    font-size: calc(36 / 16 * 1rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.info-label {
    display: block;
    color: var(--text);
    padding: 3px 15px;
    font-size: calc(24 / 16 * 1rem);
    margin-bottom: calc(8 / 16 * 1rem);
    position: relative;
}

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

    border-radius: 2px;
}

html:lang(en) .info-label::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;
}

/* Service Card Styles */
.another-Products-section {
    margin-bottom: calc(110 / 16 * 1rem);
}
.anotherProducts {
    font-size: calc(60 / 16 * 1rem);
    margin-bottom: 16px;
    text-align: center;
    color: var(--main);
}

.service-card {
    width: 100%;
    aspect-ratio: 4/5;
    border: none;
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
}
.service-card .card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* التدرج اللوني (الـ Layer) */
.service-card .card-img-overlay {
    /* التدرج يبدأ شفاف 0% وينتهي بلون أسود عند 100% */
    /* التعديل هنا: خليناه يبدأ يغمق من نص الكارت تقريباً 50% */
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        /* شفاف تماماً فوق */ rgba(0, 0, 0, 0.4) 40%,
        /* يبدأ يغمق بدري شوية */ rgba(0, 0, 0, 0.95) 100%
            /* أسود صريح تحت الكلام */
    );

    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* يخلي الكلام تحت */
    padding: 1.5rem;
    border-radius: 1.5rem;
}

.service-title {
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-desc {
    color: white;
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.9;
    margin: 0;
}

.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);
}
