/* =========================================
   صفحة تواصل معنا
========================================= */

.contact-page {
    margin: 0;
    padding: 0;
    background: #120803;
    color: white;
}


/* الهيدر */

.contact-header {
    position: fixed;
    top: 18px;
    left: 20px;
    right: 20px;

    height: 70px;

    padding: 0 35px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(45, 22, 12, 0.95);

    border-radius: 18px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.35);

    z-index: 1000;
}


.contact-header h2 {
    margin: 0;

    color: #d6a15d;

    font-size: 28px;
}


.contact-header .coffee-bean {
    color: #63a83d;
    margin-left: 8px;
}


.contact-header nav {
    display: flex;
    gap: 35px;
}


.contact-header nav a {
    color: white;

    text-decoration: none;

    font-size: 17px;

    font-weight: bold;

    position: relative;

    transition: 0.3s ease;
}


.contact-header nav a:hover,
.contact-header nav a.active {
    color: #d6a15d;
}


.contact-header nav a.active::after {
    content: "";

    position: absolute;

    right: 0;
    bottom: -9px;

    width: 100%;
    height: 3px;

    background: #d6a15d;

    border-radius: 10px;
}



/* =========================================
   الخلفية الرئيسية
========================================= */

.contact-hero {

    position: relative;

    min-height: 900px;

    padding-top: 130px;

    background-image: url("contact-bg.png");

    background-size: cover;

    background-position: center;

    overflow: hidden;
}


/* طبقة غامقة */

.contact-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(20, 8, 3, 0.25),
            rgba(15, 5, 2, 0.72),
            rgba(20, 8, 3, 0.25)
        );

    z-index: 1;
}



/* المحتوى */

.contact-content {

    position: relative;

    z-index: 2;

    width: 90%;

    max-width: 1100px;

    margin: auto;

    text-align: center;
}



/* =========================================
   البراند
========================================= */

.contact-brand {

    margin-bottom: 15px;
}


.contact-brand > i {

    font-size: 48px;

    color: #d6a15d;

    margin-bottom: 5px;
}


.contact-brand h1 {

    margin: 0;

    color: #d6a15d;

    font-size: 48px;

    text-shadow:
        0 4px 15px rgba(0,0,0,0.8);
}


.brand-line {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    margin: 8px auto 15px;
}


.brand-line span {

    width: 100px;

    height: 2px;

    background: #d6a15d;
}


.brand-line i {

    color: #d6a15d;

    font-size: 17px;
}


/* العنوان */

.contact-title {

    margin: 0 0 35px;

    color: #f3d29a;

    font-size: 31px;
}



/* =========================================
   الأعمدة
========================================= */

.contact-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    text-align: right;

    max-width: 950px;

    margin: auto;
}



/* =========================================
   بيانات التواصل
========================================= */

.contact-info h3,
.brand-info h3 {

    color: #f0c77e;

    font-size: 24px;

    margin-bottom: 25px;
}


.contact-row {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 20px;

    color: white;

    text-decoration: none;

    transition: 0.3s ease;
}


.contact-row:hover {

    transform: translateX(-5px);
}


.contact-icon {

    width: 48px;

    height: 48px;

    min-width: 48px;

    border: 2px solid #9a5b20;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #d6a15d;

    font-size: 19px;

    background: rgba(20, 8, 3, 0.65);

}


.contact-icon.whatsapp {

    color: #25d366;

    border-color: #8a622e;
}


.contact-row strong {

    display: block;

    color: #d9b77c;

    font-size: 16px;

    margin-bottom: 3px;
}


.contact-row p {

    margin: 0;

    color: white;

    font-size: 17px;
}



/* =========================================
   معلومات البراند
========================================= */

.info-block {

    margin-bottom: 25px;

    padding-bottom: 18px;

    border-bottom: 1px solid rgba(214,161,93,0.25);
}


.info-block h3 {

    margin: 0 0 8px;

    color: #f0c77e;

    font-size: 22px;
}


.info-block h3 i {

    margin-left: 8px;
}


.info-block p {

    margin: 0;

    line-height: 1.9;

    color: #f4eee6;

    font-size: 16px;
}


.small-info {

    border: none;

    margin-bottom: 12px;

    padding: 0;
}


.small-info p {

    display: inline;

    margin-left: 7px;
}


.small-info strong {

    color: #d6a15d;

    font-size: 18px;
}



/* =========================================
   تحياتي
========================================= */

.manager-message {

    margin-top: 22px;

    text-align: center;

    color: #e0b875;

    font-size: 18px;
}


.manager-message span {

    display: block;

    margin-bottom: 5px;
}


.manager-message strong {

    font-size: 21px;
}



/* =========================================
   الجملة الأخيرة
========================================= */

.contact-slogan {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    margin-top: 35px;
}


.contact-slogan span {

    width: 120px;

    height: 2px;

    background: #9a5b20;
}


.contact-slogan p {

    margin: 0;

    color: #d6a15d;

    font-size: 20px;

    font-weight: bold;
}



/* =========================================
   الفوتر
========================================= */

.contact-footer {

    position: relative;

    background: #170803;

    padding: 45px 8% 20px;

    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr 1fr;

    gap: 40px;

    border-top: 1px solid rgba(214,161,93,0.25);
}


.contact-footer h3 {

    color: #d6a15d;

    margin-bottom: 18px;

    font-size: 20px;
}


.contact-footer p,
.contact-footer a {

    color: #ddd;

    text-decoration: none;

    line-height: 2;

    display: block;

    transition: 0.3s ease;
}


.contact-footer a:hover {

    color: #d6a15d;

    transform: translateX(-3px);
}


.contact-footer i {

    margin-left: 7px;

    color: #d6a15d;
}


.social-icons {

    display: flex;

    gap: 12px;
}


.social-icons a {

    width: 40px;

    height: 40px;

    border: 1px solid #8d5b2b;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: 0.3s ease;
}


.social-icons a:hover {

    background: #6b3e26;

    transform: translateY(-4px);
}


.social-icons a i {

    margin: 0;
}


.contact-footer-bottom {

    grid-column: 1 / -1;

    border-top: 1px solid rgba(255,255,255,0.12);

    padding-top: 18px;

    margin-top: 15px;

    text-align: center;

    color: #aaa;

    font-size: 14px;
}



/* =========================================
   الموبايل
========================================= */

@media (max-width: 768px) {

    .contact-header {

        padding: 0 18px;

        height: 62px;
    }


    .contact-header h2 {

        font-size: 21px;
    }


    .contact-header nav {

        gap: 14px;
    }


    .contact-header nav a {

        font-size: 13px;
    }


    .contact-hero {

        min-height: auto;

        padding: 115px 0 50px;
    }


    .contact-brand h1 {

        font-size: 36px;
    }


    .contact-brand > i {

        font-size: 38px;
    }


    .contact-title {

        font-size: 26px;

        margin-bottom: 25px;
    }


    .contact-grid {

        grid-template-columns: 1fr;

        gap: 35px;

        width: 90%;
    }


    .contact-info,
    .brand-info {

        text-align: right;
    }


    .contact-slogan span {

        width: 50px;
    }


    .contact-slogan p {

        font-size: 15px;
    }


    .contact-footer {

        grid-template-columns: 1fr;

        text-align: center;
    }


    .social-icons {

        justify-content: center;
    }


    .contact-footer-bottom {

        grid-column: auto;
    }

}
/* =========================================
   اللمسات النهائية - صفحة التواصل
========================================= */

.contact-hero {
    min-height: 760px;
    padding-top: 120px;
    padding-bottom: 35px;

    background-size: cover;
    background-position: center center;
}


/* تكبير المحتوى الرئيسي */

.contact-content {
    width: 92%;
    max-width: 1150px;
}


/* اللوجو */

.contact-brand {
    margin-bottom: 5px;
}

.contact-brand > i {
    font-size: 42px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.7);
}

.contact-brand h1 {
    font-size: 44px;
    margin: 2px 0;
}


/* الخط تحت اللوجو */

.brand-line {
    margin: 5px auto 10px;
}

.brand-line span {
    width: 105px;
}


/* تواصل معنا */

.contact-title {
    font-size: 29px;
    margin-bottom: 28px;
}


/* توزيع العمودين */

.contact-grid {
    max-width: 900px;
    grid-template-columns: 1fr 1fr;
    gap: 85px;
}


/* العناوين */

.contact-info h3,
.brand-info h3 {
    font-size: 21px;
    margin-bottom: 20px;
}


/* بيانات التواصل */

.contact-row {
    margin-bottom: 17px;
}

.contact-icon {
    width: 43px;
    height: 43px;
    min-width: 43px;
    font-size: 17px;
}

.contact-row strong {
    font-size: 15px;
}

.contact-row p {
    font-size: 16px;
}


/* معلومات بن القبطان */

.info-block {
    margin-bottom: 18px;
    padding-bottom: 14px;
}

.info-block h3 {
    font-size: 20px;
}

.info-block p {
    font-size: 15px;
    line-height: 1.7;
}


/* تحياتي */

.manager-message {
    margin-top: 15px;
}

.manager-message strong {
    font-size: 20px;
}


/* الجملة الأخيرة */

.contact-slogan {
    margin-top: 22px;
}

.contact-slogan p {
    font-size: 18px;
}


/* الفوتر */

.contact-footer {
    padding-top: 35px;
    padding-bottom: 18px;
}
/* =========================================
   تحسين خلفية صفحة التواصل
========================================= */

.contact-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    min-height: 780px;

    position: relative;
}


/* تغميق الأطراف مع الحفاظ على وضوح الصورة */

.contact-overlay {
    background:
        radial-gradient(
            circle at center,
            rgba(20, 8, 3, 0.38) 0%,
            rgba(15, 5, 2, 0.58) 55%,
            rgba(10, 3, 1, 0.78) 100%
        );
}


/* إضاءة خفيفة في منتصف الصفحة */

.contact-content {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}
/* =========================================
   هيدر صفحة التواصل - Premium
========================================= */

.contact-header {
    background: rgba(48, 23, 12, 0.94);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border: 1px solid rgba(214, 161, 93, 0.15);

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.35);

    transition: all 0.3s ease;
}


.contact-header h2 {
    color: #d7a15d;

    letter-spacing: 0.5px;

    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.5);
}


.contact-header nav a {
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


.contact-header nav a:hover {
    transform: translateY(-2px);
}


.contact-header nav a.active {
    color: #d7a15d;
}
/* =========================================
   كروت معلومات التواصل - Premium
========================================= */

.contact-info,
.brand-info {
    background: rgba(25, 10, 4, 0.48);
    border: 1px solid rgba(214, 161, 93, 0.22);
    border-radius: 22px;
    padding: 28px;
    backdrop-filter: blur(8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.22);
}


/* عنوان كل كارت */

.contact-info > h3,
.brand-info > h3 {
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(214, 161, 93, 0.25);
}


/* صفوف التواصل */

.contact-row {
    padding: 10px;
    border-radius: 14px;
    transition: 0.3s ease;
}

.contact-row:hover {
    background: rgba(214, 161, 93, 0.09);
    transform: translateX(-5px);
}


/* معلومات البراند */

.brand-info .info-block {
    padding: 12px 5px 16px;
}


/* لمعة بسيطة عند ظهور الكروت */

.contact-info,
.brand-info {
    animation: contactCardShow 0.8s ease both;
}

.brand-info {
    animation-delay: 0.15s;
}


@keyframes contactCardShow {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}
/* Premium Brand Logo */
.contact-brand {
    position: relative;
    text-align: center;
    margin-bottom: 18px;
}

.contact-brand > i {
    color: #d7a15d;
    font-size: 48px;
    margin-bottom: 8px;
    filter: drop-shadow(0 0 12px rgba(215, 161, 93, 0.45));
    animation: anchorGlow 2.5s ease-in-out infinite;
}

.contact-brand h1 {
    color: #f3d39e;
    font-size: 48px;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow:
        0 3px 12px rgba(0, 0, 0, 0.7),
        0 0 18px rgba(215, 161, 93, 0.18);
}

@keyframes anchorGlow {
    0%, 100% {
        transform: translateY(0);
        filter: drop-shadow(0 0 8px rgba(215, 161, 93, 0.35));
    }

    50% {
        transform: translateY(-4px);
        filter: drop-shadow(0 0 18px rgba(215, 161, 93, 0.65));
    }
}
/* Premium contact section animation */

.contact-title {
    animation: titleShow 0.8s ease both;
}

.contact-slogan {
    animation: sloganShow 1s ease 0.4s both;
}

@keyframes titleShow {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes sloganShow {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Premium Contact Rows */

.contact-row {
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.contact-row::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: #d7a15d;
    transform: scaleY(0);
    transition: 0.3s ease;
}

.contact-row:hover::before {
    transform: scaleY(1);
}

.contact-icon {
    transition: 0.3s ease;
}

.contact-row:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(215, 161, 93, 0.3);
}

.contact-row strong {
    color: #e5bb7c;
}

.contact-row p {
    color: #f3eee8;
}
/* Premium Brand Info */

.brand-info .info-block {
    position: relative;
    padding: 16px 12px 18px;
    border-bottom: 1px solid rgba(215, 161, 93, 0.16);
    transition: 0.3s ease;
}

.brand-info .info-block:hover {
    transform: translateX(-4px);
    background: rgba(215, 161, 93, 0.05);
    border-radius: 12px;
}

.brand-info .info-block h3 {
    color: #e2b675;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.brand-info .info-block h3 i {
    margin-left: 8px;
    color: #d7a15d;
}

.brand-info .info-block p {
    color: #f1e8df;
}
/* Manager Message */

.manager-message {
    margin-top: 22px;
    padding: 18px;
    text-align: center;
    border-radius: 16px;
    background: rgba(215, 161, 93, 0.08);
    border: 1px solid rgba(215, 161, 93, 0.2);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.12);
}

.manager-message span {
    display: block;
    color: #d8c2a8;
    font-size: 14px;
    margin-bottom: 6px;
}

.manager-message strong {
    display: block;
    color: #e5b875;
    font-size: 21px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
/* Facebook Link */

.facebook-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: fit-content;
    margin: 20px auto;
    padding: 10px 18px;
    color: #f3eee8;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    border: 1px solid rgba(215, 161, 93, 0.2);
    border-radius: 14px;
    background: rgba(25, 10, 4, 0.45);
    transition: 0.3s ease;
}

.facebook-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #1877f2;
    color: white;
    font-size: 19px;
    transition: 0.3s ease;
}

.facebook-link:hover {
    transform: translateY(-3px);
    background: rgba(215, 161, 93, 0.1);
    border-color: rgba(215, 161, 93, 0.45);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.facebook-link:hover .facebook-icon {
    transform: scale(1.08);
}
/* Facebook Premium Card */

.facebook-card {
    background: rgba(25, 10, 4, 0.48);
    border: 1px solid rgba(214, 161, 93, 0.22);
    border-radius: 22px;
    padding: 28px;
    margin-top: 20px;
    backdrop-filter: blur(8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.22);
}

.facebook-card h3 {
    text-align: center;
    color: #e2b675;
    font-size: 21px;
    padding-bottom: 15px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(214, 161, 93, 0.25);
}

.facebook-card h3 i {
    margin-left: 8px;
}

.facebook-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    border-radius: 14px;
    color: white;
    text-decoration: none;
    transition: 0.3s ease;
}

.facebook-row:hover {
    background: rgba(214, 161, 93, 0.09);
    transform: translateX(-5px);
}

.facebook-icon {
    width: 43px;
    height: 43px;
    min-width: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #1877f2;
    color: white;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: 0.3s ease;
}

.facebook-row:hover .facebook-icon {
    transform: scale(1.1);
    box-shadow: 0 0 18px rgba(24, 119, 242, 0.4);
}

.facebook-row strong {
    display: block;
    color: #e5bb7c;
    font-size: 16px;
    margin-bottom: 4px;
}

.facebook-row p {
    margin: 0;
    color: #f1e8df;
    font-size: 14px;
}
/* Facebook Row - نفس شكل الواتساب */

.facebook-row {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    box-sizing: border-box;
}

.facebook-icon {
    background: #1877f2;
    color: white;
    border-color: #1877f2;
}

.facebook-row:hover .facebook-icon {
    background: #1877f2;
    color: white;
    box-shadow: 0 0 15px rgba(24, 119, 242, 0.35);
}

.facebook-row strong {
    color: #e5bb7c;
}

.facebook-row p {
    color: #f1e8df;
}
/* Clickable Address */

.contact-row[href] {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.contact-row[href]:hover {
    background: rgba(214, 161, 93, 0.09);
    transform: translateX(-5px);
}

.contact-row[href] p {
    color: #f1e8df;
}
/* Footer Location Link */

.footer-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f1e8df;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-location i {
    color: #d7a15d;
    transition: 0.3s ease;
}

.footer-location:hover {
    color: #d7a15d;
    transform: translateX(-3px);
}

.footer-location:hover i {
    transform: scale(1.1);
}
/* Premium Business Info */

.brand-info .small-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 45px;
}

.brand-info .small-info p {
    margin: 0;
    font-size: 14px;
}

.brand-info .small-info strong {
    color: #e5b875;
    font-size: 17px;
    letter-spacing: 0.5px;
}
.brand-info .small-info strong {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.brand-info .small-info:hover {
    background: rgba(215, 161, 93, 0.05);
    border-radius: 10px;
}
/* Calm Premium Layout */

.contact-grid {
    position: relative;
    z-index: 2;
}

.contact-info,
.brand-info {
    background: rgba(20, 7, 2, 0.58);
    border: 1px solid rgba(215, 161, 93, 0.24);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.35),
        inset 0 0 30px rgba(215, 161, 93, 0.025);
}

.contact-slogan {
    position: relative;
    z-index: 2;
    margin-top: 28px;
}

.contact-slogan p {
    color: #e5b875;
    font-weight: bold;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}
/* Premium Background Depth */

.contact-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(8, 3, 1, 0.68),
            rgba(18, 7, 2, 0.40),
            rgba(8, 3, 1, 0.68)
        ),
        radial-gradient(
            circle at center,
            rgba(120, 65, 25, 0.12),
            transparent 55%
        );
}

.contact-content {
    position: relative;
    z-index: 2;
}

.contact-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(
        circle at center,
        transparent 35%,
        rgba(0, 0, 0, 0.18) 100%
    );
}
/* Premium Slogan */

.contact-slogan {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.contact-slogan span {
    width: 120px;
    height: 1px;
    background: linear-gradient(
        to left,
        transparent,
        #d7a15d,
        transparent
    );
}

.contact-slogan p {
    margin: 0;
    white-space: nowrap;
    font-size: 18px;
    color: #d7a15d;
    letter-spacing: 0.5px;
}
/* Premium Footer */

.contact-footer {
    position: relative;
    border-top: 1px solid rgba(215, 161, 93, 0.18);
    background:
        linear-gradient(
            rgba(20, 6, 2, 0.96),
            rgba(12, 3, 1, 0.99)
        );
    box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.3);
}

.contact-footer h3,
.contact-footer h4 {
    color: #d7a15d;
}

.contact-footer a {
    transition: 0.3s ease;
}

.contact-footer a:hover {
    color: #d7a15d;
    transform: translateX(-3px);
}
/* Final Entrance Animation */

.contact-brand {
    animation: brandEntrance 1s ease both;
}

@keyframes brandEntrance {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-info,
.brand-info {
    animation: cardEntrance 0.9s ease both;
}

.brand-info {
    animation-delay: 0.15s;
}

@keyframes cardEntrance {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Anchor Premium Motion */

.contact-brand > i {
    animation:
        anchorFloat 3s ease-in-out infinite,
        anchorGlow 2.5s ease-in-out infinite;
}

@keyframes anchorFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}
/* Premium Contact Title */

.contact-title {
    position: relative;
    width: fit-content;
    margin: 10px auto 30px;
    padding: 0 25px 12px;
    color: #f0d09a;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.7);
}

.contact-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 50%;
    width: 70px;
    height: 2px;
    background: #d7a15d;
    transform: translateX(50%);
    box-shadow: 0 0 10px rgba(215, 161, 93, 0.5);
}
/* Contact Title Glow */

.contact-title::after {
    animation: titleLineGlow 2.5s ease-in-out infinite;
}

@keyframes titleLineGlow {
    0%, 100% {
        width: 55px;
        opacity: 0.65;
    }

    50% {
        width: 90px;
        opacity: 1;
    }
}
/* Contact Icons Motion */

.contact-icon {
    transition: all 0.35s ease;
}

.contact-row:hover .contact-icon {
    transform: translateY(-3px) scale(1.08);
}

.contact-row:hover .contact-icon i {
    transform: scale(1.05);
}

.contact-icon i {
    transition: transform 0.35s ease;
}
/* Premium Brand Line */

.brand-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.brand-line span {
    height: 1px;
    background: linear-gradient(
        to left,
        transparent,
        #d7a15d,
        transparent
    );
    box-shadow: 0 0 8px rgba(215, 161, 93, 0.35);
}

.brand-line i {
    color: #d7a15d;
    font-size: 15px;
    filter: drop-shadow(0 0 7px rgba(215, 161, 93, 0.45));
}
/* Professional Center Divider */

.contact-grid {
    position: relative;
}

/* Divider Glow */

.contact-grid {
    --divider-color: #d7a15d;
}

.contact-grid::marker {
    display: none;
}
/* Center Anchor Divider */

.contact-grid {
    position: relative;
}
/* Professional Center Divider */

.contact-grid {
    position: relative;
}

/* الخط */
.contact-grid::before {
    content: "";
    position: absolute;
    top: 5%;
    bottom: 5%;
    right: 50%;
    width: 1px;

    background: linear-gradient(
        to bottom,
        transparent,
        rgba(215, 161, 93, 0.7),
        rgba(215, 161, 93, 0.35),
        transparent
    );

    transform: translateX(50%);
    box-shadow: 0 0 10px rgba(215, 161, 93, 0.25);
}

/* Luxury Center Anchor */

.contact-grid::after {
    content: "\f13d" !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;

    position: absolute;
    top: 50%;
    right: 50%;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #e5b875;
    background: radial-gradient(
        circle,
        #4a2818 0%,
        #241006 65%,
        #160802 100%
    );

    border: 1px solid #d7a15d;
    border-radius: 50%;

    transform: translate(50%, -50%);

    font-size: 19px;

    box-shadow:
        0 0 0 4px rgba(215, 161, 93, 0.05),
        0 0 0 7px rgba(215, 161, 93, 0.03),
        0 5px 18px rgba(0, 0, 0, 0.45),
        0 0 22px rgba(215, 161, 93, 0.25);

    z-index: 999;
    pointer-events: none;

    transition: 0.35s ease;
}
/* Anchor Luxury Glow */

.contact-grid::after {
    animation: luxuryAnchorGlow 3s ease-in-out infinite;
}

@keyframes luxuryAnchorGlow {
    0%, 100% {
        box-shadow:
            0 0 0 4px rgba(215, 161, 93, 0.05),
            0 0 0 7px rgba(215, 161, 93, 0.03),
            0 5px 18px rgba(0, 0, 0, 0.45),
            0 0 18px rgba(215, 161, 93, 0.20);
    }

    50% {
        box-shadow:
            0 0 0 5px rgba(215, 161, 93, 0.08),
            0 0 0 9px rgba(215, 161, 93, 0.035),
            0 5px 20px rgba(0, 0, 0, 0.5),
            0 0 28px rgba(215, 161, 93, 0.38);
    }
}
/* Divider Entrance */

.contact-grid::before {
    transform: translateX(50%) scaleY(0);
    transform-origin: center;
    animation: dividerShow 1s ease 0.3s forwards;
}

.contact-grid::after {
    opacity: 0;
    animation:
        anchorEntrance 0.7s ease 0.8s forwards,
        luxuryAnchorGlow 3s ease-in-out 1.5s infinite;
}

@keyframes dividerShow {
    from {
        transform: translateX(50%) scaleY(0);
    }

    to {
        transform: translateX(50%) scaleY(1);
    }
}

@keyframes anchorEntrance {
    from {
        opacity: 0;
        transform: translate(50%, -50%) scale(0.4) rotate(-15deg);
    }

    to {
        opacity: 1;
        transform: translate(50%, -50%) scale(1) rotate(0);
    }
}
/* Contact Cards Entrance */

.contact-info {
    animation: contactCardLeft 0.8s ease 0.45s both;
}

.brand-info {
    animation: contactCardRight 0.8s ease 0.6s both;
}

@keyframes contactCardLeft {
    from {
        opacity: 0;
        transform: translateX(35px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes contactCardRight {
    from {
        opacity: 0;
        transform: translateX(-35px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* Premium Slogan */

.contact-slogan {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 30px auto 0;
}

.contact-slogan p {
    color: #e5b875;
    font-size: 19px;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.7),
        0 0 12px rgba(215, 161, 93, 0.15);
}

.contact-slogan span {
    width: 100px;
    height: 1px;
    background: linear-gradient(
        to left,
        transparent,
        rgba(215, 161, 93, 0.7),
        transparent
    );
}
/* Footer Separator */

.contact-footer {
    position: relative;
}

.contact-footer::before {
    content: "";
    position: absolute;
    top: 0;
    right: 50%;
    width: 120px;
    height: 1px;
    transform: translateX(50%);
    background: linear-gradient(
        to right,
        transparent,
        #d7a15d,
        transparent
    );
    box-shadow: 0 0 10px rgba(215, 161, 93, 0.25);
}
@media (max-width: 768px) {
    .contact-header {
        padding: 12px 18px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .contact-header h2 {
        font-size: 22px;
        margin: 0;
    }

    .contact-header nav {
        width: 100%;
        justify-content: center;
        gap: 18px;
    }

    .contact-header nav a {
        font-size: 14px;
    }
}
.contact-footer {
    animation: footerShow 1s ease 0.8s both;
}

@keyframes footerShow {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Premium Contact Cards */

.contact-info,
.brand-info {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.contact-info:hover,
.brand-info:hover {
    transform: translateY(-4px);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.3),
        0 0 25px rgba(215, 161, 93, 0.08);
}
/* Contact Icons Animation */

.contact-icon {
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}

.contact-row:hover .contact-icon {
    transform: scale(1.08) rotate(-3deg);
}
@media (max-width: 768px) {

    .contact-hero {
        min-height: auto;
        padding-top: 105px;
        padding-bottom: 40px;
    }

    .contact-content {
        width: 92%;
    }

    .contact-brand h1 {
        font-size: 34px;
    }

    .contact-brand > i {
        font-size: 38px;
    }

    .contact-title {
        font-size: 25px;
        margin-bottom: 25px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-grid::before,
    .contact-grid::after {
        display: none;
    }

    .contact-info,
    .brand-info {
        padding: 20px;
    }

    .contact-slogan {
        margin-top: 25px;
    }

    .contact-slogan span {
        width: 55px;
    }

    .contact-slogan p {
        font-size: 15px;
    }
}
@media (max-width: 768px) {

    .contact-row[href] {
        padding: 12px 10px;
        min-height: 60px;
    }

    .contact-row[href]:active {
        transform: scale(0.98);
    }

    .contact-row[href] .contact-icon {
        flex-shrink: 0;
    }

    .facebook-row {
        min-height: 60px;
    }
}
