/* ==========================
FAIRUZ FONT
========================== */

@font-face {
    font-family: 'Fairuz';
    src: url('../fonts/ArbFONTS-Fairuz-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

/* ==========================
Phenomena FONT
========================== */

@font-face {
    font-family: 'Phenomena';
    src: url('../fonts/Phenomena-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Fairuz', sans-serif;
}



/* ==========================
HEADER
========================== */

.custom-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
    z-index: 9999;
    padding: 8px 0;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* NAV */
.header-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* ==========================
NAVIGATION
========================== */

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav ul li a {
    text-decoration: none;
    color: #222;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    transition: color .3s ease;
}

.main-nav ul li a:hover {
    color: #342ABF;
}

.main-nav ul li a::after {
    content: "";
    position: absolute;
    bottom: -8px;
    inset-inline-start: 0;
    width: 0;
    height: 2px;
    background: #342ABF;
    transition: width .3s ease;
}

.main-nav ul li a:hover::after {
    width: 100%;
}

/* HAMBURGER ICON */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 80px;
        right: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
    }

    .main-nav ul {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .main-nav.active {
        display: block;
    }
}

/* ==========================
LANG SWITCH
========================== */

.language-switcher {
    font-size: 14px;
    font-weight: 600;
    color: #3DD8AC;
    text-decoration: none;
    padding: 6px 12px;
    border: 1px solid #3DD8AC;
    border-radius: 20px;
    transition: .3s ease;
}

.language-switcher:hover {
    background: #3DD8AC;
    color: #fff;
}

/* ==========================
LOGO
========================== */

.site-logo img {
    height: 100px;
    transition: transform .3s ease;
}

.site-logo img:hover {
    transform: scale(1.03);
}

/* ==========================
HERO SECTION
========================== */

.hero {
    width: 100%;
    height: 600px;
    position: relative;
    margin-top: 100px;
    background-image: url('../img/icons/BG.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.45);
}

.hero-content {
    position: relative;
    z-index: 2;

    text-align: center;

    padding: 25px 35px;


}

.hero-title {
    font-size: 46px;
    font-weight: bold;
    margin: 0;
    line-height: 1.4;

    display: inline-block;
    animation: slideIn 2s ease-out forwards;

}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-content p {
    margin-top: 10px;
    font-size: 20px;
    color: #eaeaea;
}



/* ==========================
   SERVICES OVERLAP SECTION
   ========================== */

.services-overlap {
    position: relative;
    z-index: 10;
    margin-top: -60px;
    padding-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color: #342ABF;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.service-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.service-card:hover img {
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}




/* ==========================
   English LTR STYLES
   ========================== */

body.en {
    font-family: 'Phenomena', sans-serif;
    direction: ltr;
}

body.en .header-wrapper {
    direction: ltr;
}

body.en .header-nav {
    direction: ltr;
}

body.en .main-nav ul {
    direction: ltr;
}


/* ==========================
   WHO WE ARE 
========================== */
.about-section {
    padding: 100px 0;

    background: #ffffff;

    text-align: center;

    position: relative;

    overflow: hidden;

    opacity: 0;

    transform:
        translateY(80px);

    transition:
        opacity 1.2s ease,
        transform 1.2s ease;

    -webkit-mask-image:
        radial-gradient(circle at 50% 50%, black 55%, transparent 100%);

    mask-image:
        radial-gradient(circle at 50% 50%, black 55%, transparent 100%);
}

.about-section.show {
    opacity: 1;

    transform:
        translateY(0);
}

.glow-effect {

    position: absolute;

    top: 50%;

    left: 50%;

    transform:
        translate(-50%, -50%);

    width: 750px;

    height: 750px;

    background:
        radial-gradient(circle,
            rgba(61, 216, 172, .25) 0%,
            rgba(52, 42, 191, .08) 70%);

    filter: blur(140px);

    pointer-events: none;

    z-index: 0;

    animation:
        glowFloat 8s ease-in-out infinite;
}

@keyframes glowFloat {

    0% {
        transform:
            translate(-50%, -50%) scale(1);
    }

    50% {
        transform:
            translate(-48%, -52%) scale(1.08);
    }

    100% {
        transform:
            translate(-50%, -50%) scale(1);
    }

}


.container {
    position: relative;
    z-index: 1;
}

.line-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.section-label {
    color: #342ABF;
    font-size: 42px;
    font-weight: 800;
    margin: 0;
}

.line {
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, #342ABF, #3DD8AC);
}

.about-title {
    font-size: 25px;
    color: #1a1a1a;
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.4;
    font-weight: 600;
    animation:
        titleFloat 5s ease-in-out infinite;
}

@keyframes titleFloat {

    0% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-6px);
    }

    100% {
        transform:
            translateY(0);
    }

}

.about-title span {
    color: #3DD8AC;
    font-weight: 800;
}

.about-content {
    max-width: 700px;
    margin: 0 auto;
}

.about-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #665E78;
    margin-bottom: 15px;
}

@media(max-width: 768px) {
    .about-title {
        font-size: 24px;
    }

    .section-label {
        font-size: 22px;
    }
}

/* ==========================
   VALUES SECTION 
========================== */

.values-section {
    padding: 100px 0;
    background: #f9fbfd;

    opacity: 0;
    transform: translateY(80px);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.values-section.show {
    opacity: 1;
    transform: translateY(0);
}

.values-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 80px;
    color: #342ABF;
    font-weight: 800;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 10px;
}

.v-card {
    background: #f0f4ff;
    padding: 50px 10px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
}

.v-icon {
    width: 55px;
    height: 55px;
    background: #ffffff;
    border: 2px solid #3DD8AC;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

.v-icon>* {
    transform: rotate(-45deg);
}

.icon-loyalty {
    color: #E91E63;
}

.icon-creativity {
    color: #FFC107;
}

.icon-collaboration {
    color: #2196F3;
}

.icon-integrity {
    color: #9C27B0;
}

.icon-quality {
    color: #FF9800;
}

.v-card h3 {
    margin-top: 15px;
    font-size: 17px;
    color: #1a1a1a;
    font-weight: 700;
}

.divider {
    width: 30px;
    height: 3px;
    background: linear-gradient(to right, #342ABF, #3DD8AC);
    margin: 10px auto 0;
    border-radius: 2px;
}

.v-card:hover {
    transform: translateY(-10px);
    background: #ffffff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

@media(max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width: 600px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================
   EXPERTISE SECTION
========================== */

.expertise-section {
    padding: 40px 0;
    background: #fafafa;
}

.expertise-header {
    text-align: center;
    margin-bottom: 60px;
}

.expertise-title {
    font-size: 42px;
    color: #342ABF;
    margin-bottom: 15px;
    font-weight: 800;
}

.expertise-subtitle {
    font-size: 25px;
    color: #1a1a1a;
    font-weight: 600;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.expertise-card {
    position: relative;
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transition: .35s ease;
    overflow: hidden;
}

.expertise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10);
}

.expertise-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 100%;
    background: #3DD8AC;
}

.expertise-number {
    position: absolute;
    left: 20px;
    top: 15px;

    font-size: 70px;
    font-weight: 700;

    color: rgba(52, 42, 191, 0.06);
    line-height: 1;
}

.expertise-card h3 {
    color: #342ABF;
    font-size: 24px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.expertise-card p {
    color: #665E78;
    line-height: 1.9;
    position: relative;
    z-index: 2;
}


@media(max-width:992px) {

    .expertise-grid {
        grid-template-columns: 1fr;
    }

}

/* ==========================
   ENGLISH EXPERTISE OVERRIDES
========================== */

.expertise-card-en::before {
    left: 0;
    right: auto;
}

.expertise-number-en {
    right: 20px;
    left: auto;
}



/* ==================================================
   PLATFORMS SECTION - FULLY RESPONSIVE & MULTI-LANGUAGE
   ================================================== */
.platforms-section {
    padding: 80px 0;
    background: #fcfcfc;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 450px));
    gap: 30px;
    margin-top: 50px;
    justify-content: center;
}

.platform-card {
    background: #ffffff;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(52, 42, 191, 0.08) 50%, rgba(61, 216, 172, 0.12) 100%);
    padding: 35px;
    border-radius: 25px;
    border: 1px solid rgba(52, 42, 191, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s ease;
}

.logo-wrapper {
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.platform-logo {
    width: 90%;
    height: 90%;
    object-fit: contain;
}

.platform-card h3 {
    font-size: 21px;
    color: #342ABF;
    margin-bottom: 12px;
    font-weight: 700;
}

.cat-tag {
    background: rgba(61, 216, 172, 0.2);
    color: #1a9c79;
    padding: 5px 18px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 18px;
    display: inline-block;
}

.platform-card p {
    color: #665E78;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 16px;
}

/* القائمة المشتركة */
.feature-list {
    list-style: none;
    padding: 0;
    width: 100%;
    margin-bottom: auto;
    margin-top: 10px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 14px;
    color: #665E78;
}

/* تنسيق خاص بالعربي (RTL) */
.rtl .feature-list {
    text-align: right;
}

.rtl .feature-list li {
    direction: rtl;
}

.rtl .feature-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #342ABF;
    border-radius: 50%;
    margin-left: 12px;
    margin-top: 6px;
    flex-shrink: 0;
}

/* تنسيق خاص بالإنجليزي (LTR) */
.ltr .feature-list {
    text-align: left;
}

.ltr .feature-list li {
    direction: ltr;
}

.ltr .feature-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #342ABF;
    border-radius: 50%;
    margin-right: 12px;
    margin-top: 6px;
    flex-shrink: 0;
}

.platform-btn {
    padding: 12px 35px;
    background: #342ABF;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 25px;
    transition: 0.3s;
}

.platform-btn:hover {
    background: #3DD8AC;
    color: #fff;
}


/* =======================
TABADULL PLAN
======================= */

.plan-section {

    padding: 100px 0;

    background: #fafafa;

    overflow: hidden;

}

.plan-layout {

    display: grid;

    grid-template-columns:
        1.1fr 1fr;

    gap: 50px;

    align-items: center;

}

.plan-intro {

    position: relative;

}

.year-bg {

    position: absolute;

    top: -60px;

    left: 0;

    font-size: 170px;

    font-weight: 900;

    color: rgba(61, 216, 172, .08);

    pointer-events: none;

}

.plan-intro h2 {

    font-size: 50px;

    line-height: 1.3;

    margin-bottom: 30px;

}

.plan-intro h2 span {

    color: #3DD8AC;

}

.plan-intro p {

    line-height: 2;

    color: #666;

}

.plan-cards {

    display: flex;

    flex-direction: column;

    gap: 25px;

}

.plan-card {

    background: #fff;

    padding: 40px;

    border-radius: 30px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, .06);

    transition: .4s;

    animation:
        floatCard 4s ease-in-out infinite;

}

.plan-card:hover {

    transform:
        translateY(-10px);

}

.plan-number {

    font-size: 60px;

    color: #342ABF;

    opacity: .15;

}

.plan-card h3 {

    margin: 20px 0;

    color: #342ABF;

}

.featured {

    background:
        linear-gradient(135deg,
            #342ABF,
            #4335dd);

    color: white;

}

.featured h3 {

    color: white;

}

.plan-tag {

    display: inline-block;

    background:
        rgba(255, 255, 255, .15);

    padding: 10px 18px;

    border-radius: 50px;

    margin-bottom: 20px;

}

@keyframes floatCard {

    0% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-10px);

    }

    100% {

        transform:
            translateY(0);

    }

}

@media(max-width:992px) {

    .plan-layout {

        grid-template-columns: 1fr;

    }

}


/* ==========================
CONTACT SECTION
========================== */

.contact-section {

    padding: 40px 0;

    background: #fafafa;

}

/* HEADER */

.contact-header {

    text-align: center;

    margin-bottom: 60px;

}

.contact-title {

    font-size: 44px;

    color: #222;

    margin-top: 20px;

}


.contact-layout {
    background: #342ABF;

    padding: 70px;

    border-radius: 45px;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 40px;

    overflow: hidden;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, .08);

}


/* ==========================
INFO SIDE
========================== */

.contact-info {

    display: flex;

    flex-direction: column;

    gap: 20px;

}

.contact-item {

    display: flex;

    gap: 20px;

    align-items: flex-start;

    background:
        rgba(255, 255, 255, .14);

    backdrop-filter:
        blur(20px);

    padding: 25px;

    border-radius: 25px;

    transition: .35s;

}

.contact-item:hover {

    transform:
        translateX(-8px);

    background:
        rgba(255, 255, 255, .18);

}

.contact-item img {

    width: 45px;

    height: 45px;

    object-fit: contain;

    flex-shrink: 0;

}

.contact-item h4 {

    margin: 0 0 8px;

    color: white;

    font-size: 18px;

}

.contact-item p {

    margin: 0;

    color:
        rgba(255, 255, 255, .92);

    line-height: 1.8;

}


/* ==========================
SOCIAL
========================== */

.social-links {

    display: flex;

    gap: 15px;

    margin-top: 15px;

    flex-wrap: wrap;

}

.social-links a {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 14px 20px;

    border-radius: 50px;

    background: white;

    text-decoration: none;

    color: #342ABF;

    font-weight: 600;

    transition: .3s;

}

.social-links img {

    width: 22px;

    height: 22px;

    object-fit: contain;

}

.social-links a:hover {

    transform:
        translateY(-5px);

    background: #f8f8f8;

}


/* ==========================
FORM
========================== */

.contact-form {

    background:
        rgba(255, 255, 255, .18);

    padding: 40px;

    border-radius: 30px;

    backdrop-filter:
        blur(30px);

}

.contact-form h3 {

    color: white;

    font-size: 30px;

    margin-bottom: 25px;

}

.contact-form form {

    display: flex;

    flex-direction: column;

    gap: 18px;

}

.contact-form input,
.contact-form select,
.contact-form textarea {

    width: 100%;

    border: none;

    outline: none;

    padding: 18px;

    border-radius: 18px;

    font-family: inherit;

}

.contact-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    padding: 18px;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24'%3E%3Cpath fill='%23342ABF' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 14px;

    background-position: right 18px center;
}

html[dir="rtl"] .contact-form select {
    padding-left: 45px;
    padding-right: 18px;
    background-position: left 18px center;
}

.contact-form textarea {

    height: 170px;

    resize: none;

}

.contact-form button {

    height: 60px;

    border: none;

    border-radius: 18px;

    background: #3DD8AC;

    color: #ffffff;

    font-size: 18px;

    font-weight: 700;

    cursor: pointer;

    transition: .3s;

}

.contact-form button:hover {

    background: #34B892;

    color: white;

    transform:
        translateY(-3px);

}


/* ==========================
RESPONSIVE
========================== */

@media(max-width:992px) {

    .contact-layout {

        grid-template-columns: 1fr;

        padding: 35px;

    }

    .contact-title {

        font-size: 34px;

    }

    .social-links {

        justify-content: center;

    }

}


/* ==========================
MARQUEE TICKER
========================== */

.ticker-section {

    padding: 35px 0;

    background: #fff;

    overflow: hidden;

    border-top:
        1px solid rgba(52, 42, 191, .08);

    border-bottom:
        1px solid rgba(61, 216, 172, .15);

}

.ticker-wrapper {

    overflow: hidden;

    white-space: nowrap;

    position: relative;

}

.ticker-track {

    display: inline-flex;

    align-items: center;

    gap: 90px;

    min-width: max-content;

    animation:
        tickerMove 24s linear infinite;

}

.ticker-track span {

    font-size: 30px;

    font-weight: 700;

    color: #342ABF;

    position: relative;

    padding-left: 15px;

    transition: .3s;

}

.ticker-track span:hover {

    color: #3DD8AC;

    transform:
        translateY(-3px);

}

.ticker-track span::after {

    content: "";

    position: absolute;

    left: -45px;

    top: 50%;

    transform:
        translateY(-50%);

    width: 12px;

    height: 12px;

    border-radius: 50%;

    background: #3DD8AC;

    box-shadow:
        0 0 18px #3DD8AC;

}

@keyframes tickerMove {

    0% {

        transform:
            translateX(0);

    }

    100% {

        transform:
            translateX(-50%);

    }

}

@media(max-width:768px) {

    .ticker-track span {

        font-size: 22px;

    }

}

/* ==========================
   FOOTER 
========================== */

.site-footer {
    background: linear-gradient(135deg,
            #342ABF 0%,
            #2b2396 35%,
            #1f5f6a 65%,
            #3DD8AC 100%);

    padding: 80px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    bottom: -220px;
    left: -220px;

    width: 520px;
    height: 520px;

    background: radial-gradient(circle, rgba(61, 216, 172, 0.28), transparent 60%);
    filter: blur(80px);
}

.site-footer::after {
    content: "";
    position: absolute;
    top: -220px;
    right: -220px;

    width: 520px;
    height: 520px;

    background: radial-gradient(circle, rgba(52, 42, 191, 0.28), transparent 60%);
    filter: blur(80px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: start;
}

.footer-logo img {
    max-width: 240px;
    height: auto;
    transition: transform 0.3s ease;
}

.footer-text p {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.footer-links {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-links a {
    color: #3DD8AC;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    transform: translateY(-2px);
}

.footer-text.ar {
    direction: rtl;
    text-align: right;
}

.footer-text:hover {
    transform: translateY(-3px);
    transition: 0.3s ease;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #3DD8AC;
    text-decoration: none;
    font-weight: 500;

    transition: 0.3s ease;
}

.footer-links a img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.footer-links a:hover {
    color: #fff;
    transform: translateY(-2px);
}

.footer-links a:hover img {
    transform: scale(1.1);
}

/* RESPONSIVE */
@media(max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-text.ar {
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

/* ==========================
    SCROLL TO TOP BUTTON     
========================== */

.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: auto;
    width: 55px;
    height: 55px;

    border: none;
    border-radius: 50%;

    background: #3DD8AC;
    color: white;

    font-size: 22px;
    font-weight: bold;

    cursor: pointer;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;

    transform: translateY(20px);

    transition: all 0.3s ease;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    transform: scale(1.1);
}


/* ==========================
    CONFIRMATION EMAIL MESSAGE     
========================== */

.success-message {
    display: none;

    margin-top: 20px;

    background: #e8fff2;

    color: #0f8a4b;

    padding: 14px;

    border-radius: 10px;

    font-weight: 600;

    text-align: center;
}