@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;600;700;800&display=swap');

:root {
    --gold: #d9af24;
    --gold-dark: #b78d0a;
    --dark: #565b5b;
    --dark2: #303536;
    --light: #f7f7f7;
    --white: #ffffff;
    --text: #4e5354;
    --border: #e8e8e8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Tajawal", sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1180px, 90%);
    margin: auto;
}


/* HEADER */

.header {
    height: 94px;
    background: white;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,.06);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 225px;
    height: auto;
    display: block;
    object-fit: contain;
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav a {
    font-weight: 600;
    font-size: 15px;
    transition: .25s;
}

nav a:hover {
    color: var(--gold);
}

.mobile-menu {
    display: none;
}


/* HERO */

.hero {
    min-height: 650px;
    position: relative;
    display: flex;
    align-items: center;

    background:
        linear-gradient(
            110deg,
            #ffffff 0%,
            #ffffff 48%,
            #f3f3f3 100%
        );
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 35%;
    height: 100%;
    background: var(--gold);
    opacity: .05;
    clip-path: polygon(0 0, 100% 0, 40% 100%, 0 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.4fr .8fr;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.hero-small {
    color: var(--gold-dark);
    font-weight: 700;
    font-size: 19px;
}

.hero h1 {
    color: var(--dark2);
    font-size: 58px;
    line-height: 1.3;
    margin: 12px 0 20px;
}

.hero h1 span {
    color: var(--gold);
}

.hero-text > p {
    max-width: 650px;
    font-size: 19px;
    color: #6b6f70;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 32px;
}

.btn {
    padding: 12px 30px;
    border-radius: 7px;
    font-weight: 700;
    transition: .25s;
}

.btn-primary {
    background: var(--gold);
    color: white;
}

.btn-primary:hover {
    background: var(--gold-dark);
}

.btn-outline {
    border: 1px solid var(--dark);
}

.btn-outline:hover {
    background: var(--dark);
    color: white;
}


/* HERO CARD */

.hero-card {
    background: white;
    padding: 50px 35px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,.10);
    border-top: 5px solid var(--gold);
}

.hero-card-icon {
    width: 75px;
    height: 75px;
    margin: auto auto 20px;
    border-radius: 50%;
    background: var(--gold);
    color: white;
    font-size: 38px;
    display: grid;
    place-items: center;
}

.hero-card h3 {
    color: var(--dark2);
    font-size: 24px;
}

.hero-card p {
    margin-bottom: 25px;
}

.unified-number {
    border-top: 1px solid var(--border);
    padding-top: 22px;
}

.unified-number small {
    display: block;
}

.unified-number strong {
    display: block;
    font-size: 30px;
    color: var(--gold-dark);
    letter-spacing: 2px;
}


/* GENERAL SECTION */

.section {
    padding: 100px 0;
}

.gray-section {
    background: var(--light);
}

.section-title {
    text-align: center;
    margin-bottom: 55px;
}

.section-title > span {
    color: var(--gold-dark);
    font-weight: 700;
}

.section-title h2 {
    color: var(--dark2);
    font-size: 38px;
}

.title-line {
    width: 55px;
    height: 4px;
    border-radius: 20px;
    background: var(--gold);
    margin: 12px auto 15px;
}


/* ABOUT */

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 70px;
    align-items: center;
}

.about-content h3 {
    color: var(--dark2);
    font-size: 30px;
    margin-bottom: 15px;
}

.about-content > p {
    margin-bottom: 16px;
}

.about-logo {
    padding: 30px;
}

.about-logo img {
    width: 100%;
}

.features {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
    margin-top: 30px;
}

.feature {
    display: flex;
    gap: 10px;
    align-items: center;
}

.feature span {
    background: var(--gold);
    color: white;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
}


/* SERVICES */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid var(--border);
    transition: .3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    border-color: var(--gold);
}

.service-icon {
    font-size: 40px;
    margin-bottom: 18px;
}

.service-card h3 {
    color: var(--dark2);
    margin-bottom: 12px;
}


/* COUNTRIES */

.countries-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 20px;
}

.country-card {
    position: relative;
    text-align: center;
    border: 1px solid var(--border);
    padding: 25px 15px;
    border-radius: 14px;
    background: white;
    transition: .25s;
}

.country-card:not(.disabled):hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,.07);
}

.country-flag {
    width: 90px;
    height: 60px;
    object-fit: cover;
    display: block;
    margin: 0 auto 18px;

    border-radius: 7px;
    border: 1px solid #e0e0e0;

    box-shadow: 0 5px 15px rgba(0,0,0,.10);
}

.country-card h3 {
    color: var(--dark2);
    margin-bottom: 8px;
}

.available {
    font-size: 13px;
    color: #36823c;
    font-weight: 700;
}

.not-available {
    font-size: 12px;
    color: #777;
}


/* DISABLED COUNTRIES */

.country-card.disabled {
    filter: grayscale(100%);
    opacity: .42;
    cursor: not-allowed;
    background: #ededed;
}

.country-card.disabled::after {
    content: "غير متاح حالياً";
    position: absolute;
    inset: 0;
    background: rgba(50,50,50,.78);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 14px;
    font-weight: 700;

    opacity: 0;
    transition: .25s;
}

.country-card.disabled:hover::after {
    opacity: 1;
}


/* STEPS */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.step {
    position: relative;
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
}

.step-number {
    font-size: 42px;
    font-weight: 800;
    color: rgba(217,175,36,.25);
}

.step h3 {
    color: var(--dark2);
    margin: 5px 0 10px;
}


/* CONTACT */

.contact-section {
    background: var(--dark2);
    color: white;
}

.light-title h2 {
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.contact-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 15px;
    padding: 35px;
    text-align: center;
}

.contact-icon {
    font-size: 35px;
    margin-bottom: 10px;
}

.contact-card h3 {
    color: var(--gold);
    margin-bottom: 10px;
}

.contact-card a {
    font-size: 25px;
    font-weight: 700;
}

/* CUSTOMER SERVICE PHONES */

.customer-phones {
    margin-top: 18px;
}

.phone-line {
    display: flex;
    direction: ltr;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 9px 0;
}

.phone-line span {
    color: #fff;
    font-size: 17px;
    font-weight: 600;
}

.phone-line .mobile-icon,
.phone-line .whatsapp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    font-size: 20px;
    transition: .2s;
}

.phone-line .mobile-icon {
    color: var(--gold);
}

.phone-line .whatsapp-icon {
    color: #25D366;
    font-size: 24px;
}

.phone-line .mobile-icon:hover,
.phone-line .whatsapp-icon:hover {
    transform: scale(1.15);
}

/* FOOTER */

footer {
    background: #222627;
    color: #aaa;
    padding: 45px 0 25px;
}

.footer-content {
    text-align: center;
}

.footer-logo img {
    width: 210px;
    height: auto;
    display: block;
    margin: 0 auto 25px;
    object-fit: contain;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid #3b3f40;
    padding-top: 20px;
}


/* RESPONSIVE */

@media(max-width: 900px) {

    .mobile-menu {
        display: block;
        border: 0;
        background: none;
        font-size: 30px;
        cursor: pointer;
    }

    nav {
        display: none;
        position: absolute;
        top: 94px;
        right: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 25px;
        box-shadow: 0 10px 20px rgba(0,0,0,.08);
    }

    nav.active {
        display: flex;
    }

    .hero {
        padding: 80px 0;
    }

    .hero-content,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 44px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .countries-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}


@media(max-width: 550px) {

    .logo img {
        width: 180px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-content {
        gap: 45px;
    }

    .section {
        padding: 70px 0;
    }

    .countries-grid,
    .steps-grid,
    .features {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}