:root {
    --primary-color: #062f57;
    --primary-dark: #031d38;
    --secondary-color: #118ac5;
    --secondary-dark: #0872aa;
    --light-blue: #eaf7ff;
    --lighter-blue: #f5fbff;
    --white: #ffffff;
    --text-color: #243548;
    --muted-color: #6d7c8d;
    --gray-border: #dfe9f1;
    --section-background: #f6fbfe;
    --whatsapp-color: #25d366;
    --whatsapp-dark: #159c46;
    --call-color: #0c75b7;
    --shadow-small: 0 10px 30px rgba(6, 47, 87, 0.08);
    --shadow-medium: 0 20px 55px rgba(6, 47, 87, 0.15);
    --transition: 0.3s ease;
    --container-width: 1220px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Cairo", sans-serif;
    background-color: var(--white);
    color: var(--text-color);
    line-height: 1.8;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

.container {
    width: min(92%, var(--container-width));
    margin-inline: auto;
}

.section-padding {
    padding: 105px 0;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    padding: 7px 17px;
    border-radius: 50px;
    background-color: var(--light-blue);
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 800;
}

.primary-button,
.secondary-button,
.whatsapp-button,
.outline-button,
.white-button,
.green-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 12px 25px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 800;
    transition:
        transform var(--transition),
        background-color var(--transition),
        color var(--transition),
        box-shadow var(--transition);
}

.primary-button {
    background: linear-gradient(
        135deg,
        var(--secondary-color),
        var(--primary-color)
    );
    color: var(--white);
    box-shadow: 0 12px 28px rgba(17, 138, 197, 0.24);
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(17, 138, 197, 0.3);
}

.whatsapp-button {
    background-color: var(--whatsapp-color);
    color: var(--white);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.2);
}

.whatsapp-button:hover {
    background-color: var(--whatsapp-dark);
    transform: translateY(-3px);
}

.secondary-button {
    border: 1px solid rgba(255, 255, 255, 0.55);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.secondary-button:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.outline-button {
    border: 1px solid var(--gray-border);
    background-color: var(--white);
    color: var(--primary-color);
}

.outline-button:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* الشريط العلوي */

.top-bar {
    position: relative;
    z-index: 1001;
    padding: 9px 0;
    background-color: var(--primary-dark);
    color: var(--white);
    font-size: 13px;
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.top-bar-content p {
    width: 100%;
    margin: 0;
    text-align: center;
}

/* الهيدر */

.main-header {
    position: relative;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 6px 26px rgba(6, 47, 87, 0.08);
}

.main-header.fixed-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    animation: headerDown 0.4s ease forwards;
    box-shadow: 0 10px 35px rgba(6, 47, 87, 0.14);
}

@keyframes headerDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.navbar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    min-height: 88px;
    gap: 35px;
    direction: ltr;
}

.logo,
.navigation,
.header-actions,
.menu-toggle {
    direction: rtl;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo img {
    width: 125px;
    height: 70px;
    object-fit: contain;
}

.navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.navigation a {
    position: relative;
    padding: 29px 0;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 700;
    transition: color var(--transition);
}

.navigation a::after {
    position: absolute;
    right: 0;
    bottom: 19px;
    width: 0;
    height: 3px;
    border-radius: 20px;
    background-color: var(--secondary-color);
    content: "";
    transition: width var(--transition);
}

.navigation a:hover,
.navigation a.active {
    color: var(--secondary-color);
}

.navigation a:hover::after,
.navigation a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-call,
.header-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 10px 16px;
    border-radius: 11px;
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    transition:
        transform var(--transition),
        background-color var(--transition);
}

.header-call {
    background-color: var(--primary-color);
}

.header-whatsapp {
    background-color: var(--whatsapp-color);
}

.header-call:hover,
.header-whatsapp:hover {
    transform: translateY(-2px);
}

.header-call:hover {
    background-color: var(--secondary-color);
}

.header-whatsapp:hover {
    background-color: var(--whatsapp-dark);
}

.menu-toggle {
    display: none;
    width: 43px;
    height: 43px;
    padding: 9px;
    border-radius: 10px;
    background-color: var(--light-blue);
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    margin: 5px 0;
    border-radius: 5px;
    background-color: var(--primary-color);
    transition:
        transform var(--transition),
        opacity var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero */

.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 720px;
    background:
        linear-gradient(
            90deg,
            rgba(3, 29, 56, 0.94) 0%,
            rgba(6, 47, 87, 0.83) 50%,
            rgba(6, 47, 87, 0.38) 100%
        ),
        url("images/hero.jpg") center / cover no-repeat;
    overflow: hidden;
}

.hero::before {
    position: absolute;
    top: -160px;
    right: -160px;
    width: 420px;
    height: 420px;
    border: 85px solid rgba(17, 138, 197, 0.12);
    border-radius: 50%;
    content: "";
}

.hero::after {
    position: absolute;
    bottom: -250px;
    left: -180px;
    width: 520px;
    height: 520px;
    border: 100px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    content: "";
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 20% 30%,
            rgba(17, 138, 197, 0.18),
            transparent 42%
        );
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 790px;
    padding: 90px 0;
    color: var(--white);
}

.hero-tag {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    color: #b9e9ff;
    backdrop-filter: blur(8px);
}

.hero-text h1 {
    margin-bottom: 24px;
    color: var(--white);
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.25;
}

.hero-text h1 span {
    display: block;
    color: #55c5fa;
}

.hero-text > p {
    max-width: 690px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
    line-height: 2;
}

.hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-features {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 35px;
}

.hero-features div {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 700;
}

.hero-features i {
    color: #55e891;
}

.scroll-down {
    position: absolute;
    z-index: 3;
    bottom: 28px;
    left: 50%;
    display: grid;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: var(--white);
    place-items: center;
    transform: translateX(-50%);
    animation: scrollBounce 1.8s infinite;
}

@keyframes scrollBounce {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* من نحن */

.about-preview {
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 85px;
    direction: ltr;
}

.about-image,
.about-content {
    direction: rtl;
}

.about-image {
    position: relative;
    min-height: 560px;
}

.about-image > img {
    width: 100%;
    height: 530px;
    border-radius: 80px 25px 25px 25px;
    object-fit: cover;
    box-shadow: var(--shadow-medium);
}

.about-image::before {
    position: absolute;
    z-index: -1;
    top: -25px;
    left: -25px;
    width: 210px;
    height: 210px;
    background-image:
        radial-gradient(
            var(--secondary-color) 1.5px,
            transparent 1.5px
        );
    background-size: 15px 15px;
    content: "";
    opacity: 0.24;
}

.experience-box {
    position: absolute;
    right: 25px;
    bottom: -10px;
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 285px;
    padding: 21px;
    border: 7px solid var(--white);
    border-radius: 19px;
    background:
        linear-gradient(
            135deg,
            var(--primary-color),
            var(--secondary-color)
        );
    color: var(--white);
    box-shadow: var(--shadow-medium);
}

.experience-box i {
    font-size: 39px;
}

.experience-box div {
    display: flex;
    flex-direction: column;
}

.experience-box strong {
    font-size: 18px;
}

.experience-box span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
}

.about-content h2,
.section-heading h2,
.center-heading h2,
.why-us-content h2,
.faq-intro h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: clamp(31px, 4vw, 47px);
    font-weight: 900;
    line-height: 1.45;
}

.about-content h2 span,
.section-heading h2 span,
.center-heading h2 span,
.why-us-content h2 span,
.faq-intro h2 span {
    color: var(--secondary-color);
}

.about-content > p {
    margin-bottom: 14px;
    color: var(--muted-color);
    font-size: 16px;
}

.about-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin: 30px 0;
}

.about-points > div {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 17px;
    border: 1px solid var(--gray-border);
    border-radius: 15px;
    background-color: var(--lighter-blue);
}

.about-points i {
    display: grid;
    flex-shrink: 0;
    width: 47px;
    height: 47px;
    border-radius: 12px;
    background-color: var(--light-blue);
    color: var(--secondary-color);
    font-size: 20px;
    place-items: center;
}

.about-points span {
    display: flex;
    flex-direction: column;
    color: var(--muted-color);
    font-size: 12px;
}

.about-points strong {
    color: var(--primary-color);
    font-size: 15px;
}

.about-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 13px;
}

/* الخدمات */

.services-section {
    background-color: var(--section-background);
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 48px;
}

.section-heading > div {
    max-width: 790px;
}

.section-heading h2 {
    margin-bottom: 0;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    color: var(--secondary-color);
    font-weight: 800;
    transition: gap var(--transition);
}

.text-link:hover {
    gap: 16px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    border: 1px solid rgba(6, 47, 87, 0.08);
    border-radius: 22px;
    background-color: var(--white);
    box-shadow: var(--shadow-small);
    overflow: hidden;
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.service-image {
    position: relative;
    display: flex;
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #edf5fa;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.02);
}

.service-number {
    position: absolute;
    z-index: 2;
    top: 14px;
    left: 14px;
    display: grid;
    width: 47px;
    height: 47px;
    border-radius: 13px;
    background-color: rgba(6, 47, 87, 0.92);
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
    place-items: center;
}

.service-content {
    padding: 25px 21px 22px;
}

.service-content h3 {
    min-height: 60px;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 900;
    line-height: 1.65;
}

.service-content h3 a {
    transition: color var(--transition);
}

.service-content h3 a:hover {
    color: var(--secondary-color);
}

.service-content p {
    min-height: 105px;
    margin-bottom: 17px;
    color: var(--muted-color);
    font-size: 14px;
    line-height: 1.9;
}

.service-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 45px;
    margin-bottom: 11px;
    padding: 9px 14px;
    border-radius: 10px;
    background-color: var(--light-blue);
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 800;
    transition:
        background-color var(--transition),
        color var(--transition);
}

.service-link:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.service-contact-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
}

.service-call,
.service-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 44px;
    padding: 9px 8px;
    border-radius: 10px;
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    text-align: center;
    transition:
        transform var(--transition),
        background-color var(--transition);
}

.service-call {
    background-color: var(--call-color);
}

.service-whatsapp {
    background-color: var(--whatsapp-color);
}

.service-call:hover,
.service-whatsapp:hover {
    transform: translateY(-2px);
}

.service-call:hover {
    background-color: var(--primary-color);
}

.service-whatsapp:hover {
    background-color: var(--whatsapp-dark);
}

/* لماذا تختارنا */

.why-us {
    position: relative;
    background:
        linear-gradient(
            135deg,
            var(--primary-dark),
            var(--primary-color) 55%,
            #075983
        );
    color: var(--white);
    overflow: hidden;
}

.why-us::before {
    position: absolute;
    top: -170px;
    left: -170px;
    width: 450px;
    height: 450px;
    border: 80px solid rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    content: "";
}

.why-us-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    align-items: center;
    gap: 80px;
}

.light-tag {
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.08);
    color: #91ddff;
}

.why-us-content h2 {
    color: var(--white);
}

.why-us-content > p {
    max-width: 730px;
    color: rgba(255, 255, 255, 0.77);
}

.why-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 19px;
    margin-top: 35px;
}

.why-list > div {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 19px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 16px;
    background-color: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
}

.why-list > div > i {
    display: grid;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background-color: rgba(85, 197, 250, 0.16);
    color: #75d6ff;
    font-size: 20px;
    place-items: center;
}

.why-list h3 {
    margin-bottom: 3px;
    font-size: 16px;
}

.why-list p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
}

.why-us-card {
    padding: 45px 34px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    text-align: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
}

.why-us-card > span {
    display: block;
    color: #80d9ff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
}

.why-us-card h3 {
    margin: 9px 0 14px;
    font-size: 27px;
}

.why-us-card p {
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.72);
}

.why-card-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 11px;
}

.white-button {
    background-color: var(--white);
    color: var(--primary-color);
}

.green-button {
    background-color: var(--whatsapp-color);
    color: var(--white);
}

.white-button:hover,
.green-button:hover {
    transform: translateY(-3px);
}

.white-button:hover {
    background-color: var(--light-blue);
}

.green-button:hover {
    background-color: var(--whatsapp-dark);
}

/* خطوات العمل */

.process-section {
    background-color: var(--white);
}

.center-heading {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.center-heading h2 {
    margin-bottom: 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.process-card {
    position: relative;
    padding: 36px 28px;
    border: 1px solid var(--gray-border);
    border-radius: 22px;
    background-color: var(--white);
    text-align: center;
    box-shadow: var(--shadow-small);
    overflow: hidden;
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.process-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-medium);
}

.process-number {
    position: absolute;
    top: 9px;
    left: 16px;
    color: rgba(17, 138, 197, 0.08);
    font-size: 58px;
    font-weight: 900;
    line-height: 1;
}

.process-icon {
    display: grid;
    width: 78px;
    height: 78px;
    margin: 0 auto 20px;
    border-radius: 24px;
    background:
        linear-gradient(
            135deg,
            var(--light-blue),
            #d6f1ff
        );
    color: var(--secondary-color);
    font-size: 30px;
    place-items: center;
}

.process-card h3 {
    margin-bottom: 8px;
    color: var(--primary-color);
    font-size: 21px;
}

.process-card p {
    color: var(--muted-color);
    font-size: 14px;
}

/* الأسئلة الشائعة */

.faq-section {
    background-color: var(--section-background);
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: flex-start;
    gap: 70px;
}

.faq-intro {
    position: sticky;
    top: 130px;
}

.faq-intro > p {
    margin-bottom: 28px;
    color: var(--muted-color);
}

.faq-contact-box {
    padding: 25px;
    border: 1px solid var(--gray-border);
    border-radius: 20px;
    background-color: var(--white);
    box-shadow: var(--shadow-small);
}

.faq-contact-box h3 {
    margin-bottom: 6px;
    color: var(--primary-color);
    font-size: 20px;
}

.faq-contact-box p {
    margin-bottom: 18px;
    color: var(--muted-color);
    font-size: 14px;
}

.faq-contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    border: 1px solid var(--gray-border);
    border-radius: 16px;
    background-color: var(--white);
    box-shadow: 0 8px 25px rgba(6, 47, 87, 0.05);
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 20px 22px;
    background-color: transparent;
    color: var(--primary-color);
    text-align: right;
    font-size: 16px;
    font-weight: 800;
}

.faq-question i {
    display: grid;
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    border-radius: 10px;
    background-color: var(--light-blue);
    color: var(--secondary-color);
    font-size: 14px;
    place-items: center;
    transition:
        transform var(--transition),
        background-color var(--transition),
        color var(--transition);
}

.faq-item.active .faq-question i {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 22px 21px;
    color: var(--muted-color);
    font-size: 14px;
    line-height: 2;
}

/* CTA */

.cta-section {
    padding: 72px 0;
    background:
        linear-gradient(
            120deg,
            rgba(6, 47, 87, 0.97),
            rgba(17, 138, 197, 0.91)
        ),
        url("images/about.jpg") center / cover no-repeat;
    color: var(--white);
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.cta-content > div:first-child {
    max-width: 690px;
}

.cta-content > div:first-child > span {
    color: #b8e8ff;
    font-size: 14px;
    font-weight: 800;
}

.cta-content h2 {
    margin: 8px 0 10px;
    font-size: clamp(29px, 4vw, 44px);
    font-weight: 900;
    line-height: 1.45;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.76);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 13px;
    min-width: 285px;
}

.cta-call-button,
.cta-whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    min-height: 61px;
    padding: 12px 20px;
    border-radius: 14px;
    font-weight: 800;
    transition:
        transform var(--transition),
        background-color var(--transition);
}

.cta-call-button {
    background-color: var(--white);
    color: var(--primary-color);
}

.cta-call-button > i {
    display: grid;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--light-blue);
    color: var(--secondary-color);
    place-items: center;
}

.cta-call-button > span {
    display: flex;
    flex-direction: column;
    color: var(--muted-color);
    font-size: 11px;
    line-height: 1.4;
}

.cta-call-button strong {
    color: var(--primary-color);
    font-size: 16px;
}

.cta-whatsapp-button {
    background-color: var(--whatsapp-color);
    color: var(--white);
}

.cta-whatsapp-button i {
    font-size: 24px;
}

.cta-call-button:hover,
.cta-whatsapp-button:hover {
    transform: translateY(-3px);
}

.cta-whatsapp-button:hover {
    background-color: var(--whatsapp-dark);
}

/* الفوتر */

.footer {
    background-color: #03172b;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.75fr 1fr 1fr;
    gap: 45px;
    padding: 75px 0 55px;
    direction: ltr;
}

.footer-about,
.footer-column {
    direction: rtl;
}

.footer-logo {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px;
    border-radius: 13px;
    background-color: var(--white);
}

.footer-logo img {
    width: 135px;
    height: 75px;
    object-fit: contain;
}

.footer-about p {
    max-width: 390px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.63);
    font-size: 14px;
}

.footer-contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-call,
.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 43px;
    padding: 9px 15px;
    border-radius: 10px;
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
}

.footer-call {
    background-color: var(--secondary-color);
}

.footer-whatsapp {
    background-color: var(--whatsapp-color);
}

.footer-column h3 {
    position: relative;
    margin-bottom: 24px;
    padding-bottom: 12px;
    font-size: 18px;
}

.footer-column h3::after {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    border-radius: 5px;
    background-color: var(--secondary-color);
    content: "";
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column li,
.footer-column a {
    color: rgba(255, 255, 255, 0.63);
    font-size: 14px;
    transition:
        color var(--transition),
        transform var(--transition);
}

.footer-column a:hover {
    color: #7bd9ff;
}

.footer-column ul:not(.contact-list) a {
    display: inline-block;
}

.footer-column ul:not(.contact-list) a:hover {
    transform: translateX(-5px);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-list i {
    width: 20px;
    margin-top: 5px;
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.48);
    font-size: 13px;
}

/* الأزرار العائمة */

.floating-contact {
    position: fixed;
    z-index: 900;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.floating-call,
.floating-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 52px;
    padding: 10px 17px;
    border-radius: 50px;
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
    transition: transform var(--transition);
}

.floating-call {
    background-color: var(--call-color);
    box-shadow: 0 12px 35px rgba(12, 117, 183, 0.32);
}

.floating-whatsapp {
    background-color: var(--whatsapp-color);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.35);
}

.floating-call:hover,
.floating-whatsapp:hover {
    transform: translateY(-3px);
}

.floating-call i,
.floating-whatsapp i {
    font-size: 21px;
}

.back-to-top {
    position: fixed;
    z-index: 900;
    left: 20px;
    bottom: 20px;
    display: grid;
    width: 47px;
    height: 47px;
    border-radius: 13px;
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-medium);
    opacity: 0;
    visibility: hidden;
    place-items: center;
    transform: translateY(20px);
    transition:
        opacity var(--transition),
        visibility var(--transition),
        transform var(--transition),
        background-color var(--transition);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--secondary-color);
}

/* ظهور الأقسام */

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}