@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800;900&display=swap');


/* =====================================================
   VARIABLES
===================================================== */

:root {
    --orange: #ff6b18;
    --orange-light: #ff8a3d;

    --bg: #f7f7f7;
    --surface: #ffffff;
    --surface-2: #eeeeee;

    --text: #111111;
    --muted: #666666;

    --border: rgba(0, 0, 0, .08);

    --shadow:
        0 20px 60px rgba(0, 0, 0, .08);

    --radius: 24px;

    --transition:
        .35s cubic-bezier(.2, .7, .2, 1);
}


/* =====================================================
   RESET
===================================================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: "Cairo", sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;

    transition:
        background .5s ease,
        color .5s ease;
}

img {
    max-width: 100%;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}


/* =====================================================
   DARK MODE
===================================================== */

body.dark {
    --bg: #080808;
    --surface: #141414;
    --surface-2: #101010;

    --text: #f5f5f5;
    --muted: #aaaaaa;

    --border:
        rgba(255, 255, 255, .08);

    --shadow:
        0 25px 70px rgba(0, 0, 0, .45);
}


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

.header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;

    padding: 12px 4%;

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

    border-bottom:
        1px solid var(--border);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    transition: .4s ease;
}

body.dark .header {
    background:
        rgba(8, 8, 8, .78);
}

.header-container {
    width: 100%;
    max-width: 1250px;

    margin: auto;

    display: flex;
    align-items: center;

    gap: 25px;
}

.brand {
    width: 58px;
    height: 58px;

    flex-shrink: 0;

    display: grid;
    place-items: center;
}

.brand img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.nav {
    flex: 1;

    display: flex;
    justify-content: center;

    gap: 6px;
}

.nav a {
    padding: 10px 15px;

    border-radius: 12px;

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

    transition:
        var(--transition);
}

.nav a:hover,
.nav a.active {
    color: var(--orange);

    background:
        rgba(255, 107, 24, .08);
}

.controls {
    display: flex;
    gap: 8px;

    flex-shrink: 0;
}

.control-btn,
.language-btn,
.menu-btn {
    width: 42px;
    height: 42px;

    border:
        1px solid var(--border);

    border-radius: 12px;

    background: transparent;
    color: var(--text);

    cursor: pointer;

    display: grid;
    place-items: center;

    transition:
        var(--transition);
}

.control-btn:hover,
.language-btn:hover,
.menu-btn:hover {
    color: var(--orange);

    border-color:
        rgba(255, 107, 24, .4);

    transform:
        translateY(-2px);
}

.menu-btn {
    display: none;
}


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

.hero {
    min-height: 100svh;
    min-height: 100vh;

    position: relative;

    display: grid;
    place-items: center;

    padding:
        130px 5% 70px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 45%,
            rgba(255, 107, 24, .10),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #ffffff,
            #f2f2f2
        );
}

body.dark .hero {
    background:
        radial-gradient(
            circle at 78% 48%,
            rgba(255, 107, 24, .16),
            transparent 28%
        ),
        radial-gradient(
            circle at 10% 20%,
            rgba(255, 107, 24, .07),
            transparent 25%
        ),
        #080808;
}

.hero-content {
    width: min(1200px, 100%);

    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 60px;

    position: relative;
    z-index: 2;
}

.hero-text {
    text-align: right;

    min-width: 0;
}

.orange-line {
    width: 95px;
    height: 6px;

    border-radius: 50px;

    background:
        var(--orange);

    box-shadow:
        0 0 25px
        rgba(255, 107, 24, .35);

    margin-bottom: 22px;
}

.eyebrow {
    color:
        var(--orange);

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 1px;
}


/* =====================================================
   BRAND TITLE
===================================================== */

.brand-title {
    margin-top: 8px;

    display: flex;
    flex-direction: column;

    align-items: flex-start;

    gap: 9px;

    font-size:
        clamp(52px, 7vw, 92px);

    line-height: .95;

    font-weight: 900;
}

.brand-title span {
    display: block;

    white-space: nowrap;
}


/* =====================================================
   HERO TEXT
===================================================== */

.hero h2 {
    font-size:
        clamp(22px, 3vw, 36px);

    margin-top: 18px;
}

.hero p {
    margin-top: 12px;

    color:
        var(--muted);

    font-size: 16px;
}

.hero-buttons {
    display: flex;

    gap: 14px;

    margin-top: 32px;
}

.btn {
    min-height: 56px;

    padding:
        0 27px;

    border-radius: 17px;

    display: inline-flex;

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

    gap: 10px;

    font-weight: 900;

    position: relative;

    overflow: hidden;

    transition:
        var(--transition);
}

.btn:hover {
    transform:
        translateY(-5px);
}

.whatsapp-btn {
    color: white;

    background:
        #16bd5a;

    box-shadow:
        0 15px 35px
        rgba(22, 189, 90, .18);
}

.call-btn {
    color: white;

    background:
        #111;
}

body.dark .call-btn {
    color: #111;

    background:
        white;
}


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

.hero-logo {
    min-height: 520px;

    display: grid;
    place-items: center;

    position: relative;

    min-width: 0;
}

.hero-logo img {
    width:
        min(520px, 90%);

    position: relative;
    z-index: 2;

    object-fit: contain;

    animation:
        floatLogo 5s ease-in-out infinite;

    filter:
        drop-shadow(
            0 25px 45px
            rgba(0, 0, 0, .12)
        );
}

body.dark .hero-logo img {
    filter:
        drop-shadow(
            0 25px 50px
            rgba(255, 107, 24, .15)
        );
}

.logo-orbit {
    position: absolute;

    border:
        1px solid
        rgba(255, 107, 24, .15);

    border-radius: 50%;

    animation:
        orbit 10s linear infinite;

    pointer-events: none;
}

.orbit-one {
    width: 500px;
    height: 500px;
}

.orbit-two {
    width: 620px;
    height: 620px;

    border-style: dashed;

    opacity: .45;

    animation-direction:
        reverse;
}

.hero-glow {
    position: absolute;

    border-radius: 50%;

    filter:
        blur(80px);

    pointer-events: none;

    animation:
        glow 6s ease-in-out infinite;
}

.glow-one {
    width: 300px;
    height: 300px;

    background:
        rgba(255, 107, 24, .1);

    right: -80px;
    top: 30%;
}

.glow-two {
    width: 250px;
    height: 250px;

    background:
        rgba(255, 107, 24, .06);

    left: -70px;
    bottom: 10%;
}


/* =====================================================
   SCROLL HINT
===================================================== */

.scroll-hint {
    position: absolute;

    bottom: 28px;
    left: 50%;

    transform:
        translateX(-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 5px;

    color:
        var(--muted);

    font-size: 12px;

    animation:
        scrollHint 2s ease-in-out infinite;

    white-space: nowrap;
}

.scroll-hint i {
    color:
        var(--orange);
}


/* =====================================================
   SECTIONS
===================================================== */

.section {
    width: 100%;
    max-width: 1250px;

    margin: auto;

    padding:
        100px 5%;
}

.section-alt {
    max-width: none;

    background:
        var(--surface-2);
}

.section-title {
    display: flex;

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

    gap: 18px;

    margin-bottom: 45px;
}

.section-title span {
    width: 55px;
    height: 3px;

    background:
        var(--orange);

    border-radius: 50px;

    flex-shrink: 0;
}

.section-title h2 {
    font-size:
        clamp(25px, 4vw, 38px);

    font-weight: 900;

    text-align: center;
}


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

.social-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;
}

.social-card {
    min-height: 150px;

    padding: 24px;

    display: flex;

    flex-direction: column;

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

    gap: 12px;

    text-align: center;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius);

    background:
        var(--surface);

    box-shadow:
        var(--shadow);

    transition:
        var(--transition);
}

.social-card:hover {
    transform:
        translateY(-8px);

    border-color:
        rgba(255, 107, 24, .3);
}

.social-icon {
    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border-radius: 15px;

    background:
        rgba(128, 128, 128, .1);

    font-size: 22px;
}

.social-card strong {
    display: block;

    text-align: center;

    line-height: 1.4;
}

.social-card small {
    color:
        var(--orange);

    line-height: 1;
}

.facebook .social-icon {
    color: #1877f2;
}

.tiktok .social-icon {
    color: #111;
}

body.dark .tiktok .social-icon {
    color: white;
}

.youtube .social-icon {
    color: #f00;
}

.telegram .social-icon {
    color: #229ed9;
}

.instagram .social-icon {
    color: #e1306c;
}

.whatsapp .social-icon {
    color: #16bd5a;
}


/* =====================================================
   CARDS
===================================================== */

.cards-grid {
    width: 100%;
    max-width: 1000px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px;
}

.info-card {
    padding: 30px;

    border-radius:
        var(--radius);

    border:
        1px solid var(--border);

    background:
        var(--surface);

    box-shadow:
        var(--shadow);
}

.card-heading {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 24px;
}

.card-heading h3 {
    min-width: 0;
}

.card-icon,
.support-icon {
    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border-radius: 16px;

    color:
        var(--orange);

    background:
        rgba(255, 107, 24, .1);
}

.phone-list {
    display: grid;

    gap: 10px;
}

.phone-list a {
    padding: 15px;

    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 10px;

    border-radius: 14px;

    background:
        rgba(128, 128, 128, .08);

    transition:
        var(--transition);
}

.phone-list a:hover {
    transform:
        translateX(-5px);

    background:
        rgba(255, 107, 24, .08);
}

.phone-list b {
    direction: ltr;

    white-space: nowrap;
}

.phone-list span {
    color:
        #16bd5a;

    font-size: 13px;
    font-weight: 800;

    white-space: nowrap;
}


/* =====================================================
   SUPPORT
===================================================== */

.support-grid {
    width: 100%;
    max-width: 1000px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;
}

.support-card {
    padding: 22px;

    display: flex;

    align-items: center;

    gap: 16px;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius);

    background:
        var(--surface);

    box-shadow:
        var(--shadow);

    transition:
        var(--transition);
}

.support-card:hover {
    transform:
        translateY(-6px);
}

.support-card p {
    color:
        var(--muted);

    margin-top: 4px;

    direction: ltr;
}

.support-card > b {
    margin-inline-start: auto;

    color:
        var(--orange);
}


/* =====================================================
   LOCATION
===================================================== */

.location-section {
    padding:
        100px 5%;

    background:
        var(--surface-2);
}

.location-card {
    width: 100%;
    max-width: 1000px;

    margin: auto;

    padding: 35px;

    display: grid;

    grid-template-columns:
        auto 1fr auto;

    align-items: center;

    gap: 25px;

    border:
        1px solid var(--border);

    border-radius: 30px;

    background:
        var(--surface);

    box-shadow:
        var(--shadow);
}

.location-icon {
    width: 80px;
    height: 80px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border-radius: 24px;

    color:
        var(--orange);

    background:
        rgba(255, 107, 24, .1);

    font-size: 32px;
}

.location-text {
    min-width: 0;
}

.location-text h3 {
    font-size: 30px;

    margin:
        5px 0;
}

.location-text p {
    color:
        var(--muted);

    margin-bottom: 20px;
}

.maps-btn {
    min-height: 50px;

    padding:
        0 20px;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    border-radius: 15px;

    color: white;

    background:
        #111;

    font-weight: 800;

    transition:
        var(--transition);
}

body.dark .maps-btn {
    color: #111;

    background:
        var(--orange);
}

.maps-btn:hover {
    transform:
        translateY(-4px);
}

.map-badge {
    width: 90px;
    height: 90px;

    display: grid;

    place-items: center;

    align-content: center;

    border-radius: 25px;

    background:
        rgba(128, 128, 128, .1);
}

.map-badge i {
    color:
        var(--orange);

    font-size: 28px;
}


/* =====================================================
   SUPPORT BANNER
===================================================== */

.support-banner {
    width: calc(100% - 10%);
    max-width: 1100px;

    margin: 80px auto;

    padding:
        70px 6%;

    border-radius: 35px;

    color: white;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(255, 107, 24, .35),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #111,
            #1b1b1b
        );

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 30px;
}

.support-banner h2 {
    font-size: 48px;
}

.support-banner p {
    color: #aaa;
}

.support-actions {
    display: flex;

    gap: 10px;

    flex-wrap: wrap;
}

.support-btn {
    min-height: 50px;

    padding:
        0 20px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    border-radius: 14px;

    font-weight: 800;

    transition:
        var(--transition);
}

.support-btn:hover {
    transform:
        translateY(-4px);
}

.green {
    background:
        #16bd5a;
}

.orange {
    background:
        var(--orange);

    color:
        #111;
}


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

.footer {
    padding:
        45px 5%;

    position: relative;

    text-align: center;

    color: white;

    background:
        #080808;
}

.footer-social {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 20px;
}

.footer-social a {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    background:
        #181818;

    color:
        #aaa;

    transition:
        var(--transition);
}

.footer-social a:hover {
    color:
        #111;

    background:
        var(--orange);

    transform:
        translateY(-4px);
}

#top-button {
    position: absolute;

    left: 5%;
    bottom: 35px;

    width: 44px;
    height: 44px;

    border: 0;

    border-radius: 14px;

    cursor: pointer;

    color:
        #111;

    background:
        var(--orange);

    transition:
        var(--transition);
}

#top-button:hover {
    transform:
        translateY(-4px);
}


/* =====================================================
   ANIMATIONS
===================================================== */

.reveal {
    opacity: 0;

    transform:
        translateY(30px);

    transition:
        opacity .8s ease,
        transform .8s cubic-bezier(.2, .7, .2, 1);
}

.reveal.show {
    opacity: 1;

    transform:
        translateY(0);
}

@keyframes floatLogo {
    0%,
    100% {
        transform: translateY(0);
    }

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

@keyframes orbit {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes glow {
    0%,
    100% {
        opacity: .4;

        transform:
            scale(1);
    }

    50% {
        opacity: .8;

        transform:
            scale(1.15);
    }
}

@keyframes scrollHint {
    0%,
    100% {
        transform:
            translate(-50%, 0);
    }

    50% {
        transform:
            translate(-50%, 8px);
    }
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .header {
        padding:
            10px 4%;
    }

    .nav {
        position: absolute;

        top:
            calc(100% + 8px);

        right: 4%;
        left: 4%;

        padding: 10px;

        display: flex;

        flex-direction: column;

        background:
            var(--surface);

        border:
            1px solid var(--border);

        border-radius: 18px;

        box-shadow:
            var(--shadow);

        opacity: 0;

        visibility: hidden;

        transform:
            translateY(-10px);

        transition:
            var(--transition);
    }

    .nav.open {
        opacity: 1;

        visibility: visible;

        transform:
            translateY(0);
    }

    .nav a {
        width: 100%;

        text-align: center;
    }

    .menu-btn {
        display: grid;
    }


    .hero {
        padding-top: 115px;
    }

    .hero-content {
        grid-template-columns:
            1fr;

        gap: 20px;
    }

    .hero-text {
        order: 2;

        text-align: center;
    }

    .hero-logo {
        order: 1;

        min-height: 380px;
    }

    .orange-line {
        margin-inline:
            auto;
    }

    .brand-title {
        align-items: center;
    }

    .hero-buttons {
        justify-content:
            center;
    }


    .social-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .support-banner {
        margin-inline: 5%;

        flex-direction:
            column;

        align-items:
            center;

        text-align: center;
    }


    .location-card {
        grid-template-columns:
            auto 1fr;
    }

    .map-badge {
        display: none;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .header {
        padding:
            8px 4%;
    }

    .header-container {
        gap: 8px;
    }

    .brand {
        width: 50px;
        height: 50px;
    }

    .controls {
        gap: 5px;
    }

    .control-btn,
    .language-btn,
    .menu-btn {
        width: 40px;
        height: 40px;
    }


    .hero {
        padding:
            105px 5% 75px;

        min-height: 100svh;
    }

    .hero-content {
        width: 100%;
    }

    .hero-logo {
        min-height:
            285px;

        width: 100%;
    }

    .hero-logo img {
        width:
            min(88vw, 360px);
    }

    .orbit-one {
        width: 300px;
        height: 300px;
    }

    .orbit-two {
        width: 360px;
        height: 360px;
    }


    .brand-title {
        font-size:
            clamp(48px, 15vw, 72px);

        gap: 7px;

        line-height: .95;
    }

    .hero h2 {
        font-size:
            clamp(20px, 6vw, 28px);

        line-height: 1.35;

        margin-top: 16px;
    }

    .hero p {
        font-size: 14px;

        line-height: 1.8;
    }


    .hero-buttons {
        width: 100%;

        flex-direction:
            column;

        gap: 10px;
    }

    .btn {
        width: 100%;
        min-height: 54px;
    }


    .section,
    .location-section {
        padding:
            75px 5%;
    }

    .section-title {
        gap: 10px;

        margin-bottom: 32px;
    }

    .section-title span {
        width: 30px;
    }

    .section-title h2 {
        font-size:
            clamp(22px, 7vw, 30px);
    }


    .social-grid,
    .cards-grid,
    .support-grid {
        grid-template-columns:
            1fr;
    }


    .social-card {
        min-height: 155px;
        padding: 22px;
    }


    .info-card {
        padding: 22px;
    }

    .card-heading {
        align-items: flex-start;
    }

    .phone-list a {
        padding: 13px;

        flex-wrap: wrap;
    }


    .support-card {
        padding: 18px;
    }


    .location-card {
        grid-template-columns:
            1fr;

        padding: 25px 20px;

        text-align:
            center;
    }

    .location-icon {
        margin:
            auto;
    }

    .location-text h3 {
        font-size: 26px;
    }

    .maps-btn {
        width: 100%;

        justify-content:
            center;
    }


    .support-banner {
        width: 90%;

        margin:
            50px auto;

        padding:
            45px 22px;
    }

    .support-banner h2 {
        font-size:
            40px;
    }

    .support-actions {
        width: 100%;

        flex-direction:
            column;
    }

    .support-btn {
        width: 100%;
    }


    #top-button {
        left: 18px;
        bottom: 20px;
    }

}


/* =====================================================
   VERY SMALL PHONES
===================================================== */

@media (max-width: 380px) {

    .brand {
        width: 46px;
        height: 46px;
    }

    .control-btn,
    .language-btn,
    .menu-btn {
        width: 37px;
        height: 37px;
    }

    .hero {
        padding-inline: 4%;
    }

    .hero-logo {
        min-height: 250px;
    }

    .hero-logo img {
        width: 82vw;
    }

    .orbit-one {
        width: 260px;
        height: 260px;
    }

    .orbit-two {
        width: 310px;
        height: 310px;
    }

    .brand-title {
        font-size:
            14vw;

        gap: 6px;
    }

    .hero p {
        font-size: 13px;
    }

    .section-title span {
        width: 22px;
    }

}


/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration:
            .01ms !important;

        animation-iteration-count:
            1 !important;

        scroll-behavior:
            auto !important;

        transition-duration:
            .01ms !important;
    }
}