/* =========================================================
   VARIABLES
========================================================= */

:root {

    --blue: #1781a8;
    --blue-dark: #0f769c;

    --black: #0b1015;
    --dark: #08101a;

    --gray: #666;
    --light-gray: #eef0f2;

    --white: #ffffff;

    --shadow:
        0 8px 28px rgba(0, 0, 0, .12);

}


/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    margin: 0;

    font-family:
        "Cairo",
        Arial,
        sans-serif;

    color: var(--black);

    background: #fff;

    line-height: 1.9;

}


img {

    max-width: 100%;

    display: block;

}


a {

    text-decoration: none;

    color: inherit;

}


button,
input,
select,
textarea {

    font: inherit;

}


/* =========================================================
   CONTAINER
========================================================= */

.container {

    width: min(1200px, 92%);

    margin-inline: auto;

}


/* =========================================================
   TOP BAR
========================================================= */

.topbar {

    position: absolute;

    inset:
        0
        0
        auto
        0;

    z-index: 50;

    background:
        rgba(14, 28, 42, .18);

    color: #fff;

    border-bottom:
        1px solid
        rgba(255, 255, 255, .16);

    font-size: 13px;

}


.topbar-inner {

    display: flex;

    justify-content: space-between;

    align-items: center;

    min-height: 52px;

}


.top-contact {

    display: flex;

    gap: 16px;

    align-items: center;

    opacity: .96;

}


.divider {

    width: 1px;

    height: 20px;

    background:
        rgba(255,255,255,.25);

}


.social {
    display: flex;
    align-items: center;
    gap: 14px;
    direction: ltr;
}

.social a {
    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 16px;

    transition: .25s;
}

.social a:hover {
    color: #22a7d6;
    transform: translateY(-2px);
}


/* =========================================================
   HEADER
========================================================= */

.site-header {

    position: absolute;

    top: 52px;

    left: 0;

    right: 0;

    z-index: 45;

    color: #fff;

    transition: .3s;

}


.site-header.scrolled {

    position: fixed;

    top: 0;

    background:
        rgba(7,16,25,.94);

    box-shadow:
        0 8px 20px
        rgba(0,0,0,.18);

}


.nav-wrap {

    display: flex;

    align-items: center;

    gap: 28px;

    min-height: 96px;

}


.brand {

    margin-left: auto;

    width: 124px;

}


.brand img {

    width: 110px;

    filter:
        drop-shadow(
            0 2px 4px
            rgba(0,0,0,.3)
        );

}


.main-nav {

    display: flex;

    align-items: center;

    gap: 18px;

    margin: auto;

}


.nav-link {

    color: #fff;

    background: none;

    border: 0;

    padding: 14px 8px;

    font-weight: 700;

    cursor: pointer;

    white-space: nowrap;

}


.nav-link:hover,
.nav-link.active {

    color: #28b1df;

}


.nav-link span {

    font-size: 15px;

}


/* =========================================================
   DROPDOWN
========================================================= */

.nav-dropdown {

    position: relative;

}


.dropdown-menu {

    position: absolute;

    top: 50px;

    right: 0;

    width: 190px;

    background: #fff;

    color: #111;

    box-shadow: var(--shadow);

    padding: 14px 0;

    opacity: 0;

    visibility: hidden;

    transform: translateY(-5px);

    transition: .2s;

}


.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}


.dropdown-menu a {

    display: block;

    padding: 11px 20px;

    font-size: 16px;

}


.dropdown-menu a:hover {

    background: #f1f7fa;

    color: var(--blue);

}


/* =========================================================
   LANGUAGE
========================================================= */

.lang-switch {

    background: var(--blue);

    color: #fff;

    padding: 12px 28px;

    font-weight: 700;

    white-space: nowrap;

}


/* =========================================================
   MOBILE BUTTON
========================================================= */

.hamburger {

    display: none;

    background: none;

    border: 0;

    padding: 8px;

}


.hamburger span {

    display: block;

    width: 26px;

    height: 2px;

    background: #fff;

    margin: 5px;

}


/* =========================================================
   HERO
========================================================= */

.hero {

    position: relative;

    min-height: 760px;

    background:
        url("assets/hero_scene.jpg")
        center center /
        cover
        no-repeat;

    display: flex;

    align-items: center;

    overflow: hidden;

}


.hero::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        rgba(11,35,56,.26);

}


.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(7,26,42,.20),
            rgba(7,26,42,.35)
        );

}


.hero-content {

    position: relative;

    z-index: 2;

    display: flex;

    justify-content: flex-start;

}


.hero-copy {

    width: min(560px,90%);

    margin-left: 12%;

    transform:
        translateY(30px);

}


.hero-copy h1 {

    font-size:
        clamp(48px,6vw,86px);

    line-height: 1.15;

    color: #fff;

    margin: 0 0 8px;

    font-weight: 800;

    letter-spacing: -2px;

}


.hero-copy p {

    color: #fff;

    font-size: 20px;

    font-weight: 700;

    margin: 0 0 26px;

}


/* =========================================================
   BUTTON
========================================================= */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    background: var(--blue);

    color: #fff;

    border: 0;

    padding: 12px 26px;

    border-radius: 0;

    font-weight: 700;

    cursor: pointer;

    transition: .25s;

}


.btn:hover {

    background: #0e6e8f;

    transform:
        translateY(-2px);

}


.hero-btn {

    border-radius: 26px;

    padding-inline: 24px;

}


/* =========================================================
   HERO ARROWS
========================================================= */

.hero-arrow {

    position: absolute;

    z-index: 3;

    top: 50%;

    transform:
        translateY(-50%);

    width: 62px;

    height: 62px;

    border-radius: 50%;

    border: 0;

    background:
        rgba(3,18,33,.82);

    color: #fff;

    font-size: 38px;

    line-height: 1;

    cursor: pointer;

}


.hero-arrow.left {

    left: 22px;

}


.hero-arrow.right {

    right: 22px;

}


/* =========================================================
   SECTIONS
========================================================= */

.section {

    padding: 90px 0;

}


/* =========================================================
   ABOUT
========================================================= */

.about {

    background: #fff;

}


.about-grid {

    display: grid;

    grid-template-columns:
        1.05fr
        1fr;

    gap: 70px;

    align-items: center;

}


.about-image {

    order: 2;

}


.about-copy {

    order: 1;

}


.about-image img {

    border-radius: 6px;

    box-shadow:
        0 4px 18px
        rgba(0,0,0,.15);

}


.section-heading h2,
.about-copy h2 {

    font-size: 42px;

    line-height: 1.25;

    margin: 0 0 20px;

    font-weight: 800;

}


.eyebrow {

    color: var(--blue);

    font-weight: 800;

    margin: 0 0 6px;

    font-size: 17px;

}


.about-copy .lead {

    font-weight: 700;

    font-size: 19px;

}


.about-copy p {

    font-size: 16px;

    margin: 0 0 14px;

    color: #333;

}


/* =========================================================
   SERVICES
========================================================= */

.dark-section {

    position: relative;

    overflow: hidden;

    background: #0e1115;

    color: #fff;

}


.services-bg {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            rgba(0,0,0,.73),
            rgba(0,0,0,.78)
        ),
        url("assets/service_kitchen_bg.jpg")
        center /
        cover
        no-repeat;

}


.services-inner {

    position: relative;

    z-index: 2;

}


.section-heading.center {

    text-align: center;

    margin-bottom: 38px;

}


.dark-section
.section-heading h2 {

    color: #fff;

}


.service-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 26px;

}


.service-card {

    background: #fff;

    color: #111;

    box-shadow: var(--shadow);

    overflow: hidden;

    transition: .25s;

}


.service-card:hover {

    transform:
        translateY(-7px);

}


.service-image {

    aspect-ratio:
        1.42 / 1;

    overflow: hidden;

}


.service-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.service-caption {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 14px 22px;

    background: #fff;

}


.service-caption h3 {

    font-size: 20px;

    margin: 0;

}


.circle-arrow {

    width: 42px;

    height: 42px;

    border-radius: 50%;

    background: var(--blue);

    color: #fff;

    display: grid;

    place-items: center;

    font-size: 22px;

}


/* =========================================================
   GALLERY
========================================================= */

.gallery {

    background:
        #eef0f2;

}


.gallery-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 28px;

}


.gallery-item {

    border-radius: 12px;

    overflow: hidden;

    box-shadow:
        0 5px 18px
        rgba(0,0,0,.14);

    background: #ddd;

    min-height: 280px;

}


.gallery-item img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform .4s;

}


.gallery-item:hover img {

    transform:
        scale(1.06);

}


/* =========================================================
   VISION
========================================================= */

.vision {

    background:
        #eef0f2;

}


.vision-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 25px;

    max-width: 1000px;

    margin: auto;

}


.vision-card {

    background: #fff;

    border-radius: 7px;

    padding: 30px;

    box-shadow:
        0 3px 15px
        rgba(0,0,0,.14);

}


.vision-card h3 {

    color: var(--blue);

    font-size: 26px;

    margin: 0 0 14px;

}


.vision-card p {

    margin: 0 0 12px;

    font-size: 16px;

}


/* =========================================================
   CONTACT
========================================================= */

.contact {

    background: #fff;

}


.contact-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 55px;

    align-items: center;

}


.map-panel img {

    width: 100%;

    height: 520px;

    object-fit: cover;

    box-shadow: var(--shadow);

}


.contact-form-wrap {

    padding: 10px;

}


.form-row {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 20px;

    margin-bottom: 18px;

}


.contact-form-wrap
input,
.contact-form-wrap
select,
.contact-form-wrap
textarea {

    width: 100%;

    border: 0;

    background: #f9fafb;

    box-shadow:
        0 6px 20px
        rgba(0,0,0,.06);

    padding: 16px 18px;

    outline: none;

    color: #555;

}


.contact-form-wrap textarea {

    min-height: 150px;

    resize: vertical;

    margin-bottom: 18px;

}


.submit-btn {

    width: 100%;

    padding: 14px 20px;

}


.form-success {

    color: #168a46;

    display: none;

    margin: 10px 0 0;

    font-weight: 700;

}


.form-success.show {

    display: block;

}


/* =========================================================
   FLOATING BUTTONS
========================================================= */

.floating-actions {
    position: fixed;

    z-index: 60;

    left: 0;
    top: 52%;

    display: flex;
    flex-direction: column;

    gap: 5px;
}

.floating-actions a {
    width: 48px;
    height: 48px;

    background: #1781a8;
    color: #fff;

    border-radius:
        0 24px 24px 0;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 21px;

    box-shadow:
        0 3px 10px
        rgba(0,0,0,.18);

    transition: .25s;
}

.floating-actions a:hover {
    width: 55px;
    background: #0f769c;
}


/* =========================================================
   BACK TO TOP
========================================================= */

.to-top {

    position: fixed;

    right: 20px;

    bottom: 20px;

    z-index: 60;

    width: 46px;

    height: 46px;

    border: 0;

    background:
        var(--blue);

    color: #fff;

    font-size: 28px;

    cursor: pointer;

    display: none;

}


.to-top.show {

    display: block;

}


/* =========================================================
   FOOTER
========================================================= */

.footer {

    background:
        #07131f;

    color:
        #d7e1e8;

    margin-top: 0;

}


/* =========================
   MAIN FOOTER
========================= */

.footer-main {

    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr
        1.4fr;

    gap: 55px;

    padding: 70px 0 55px;

}


/* =========================
   COLUMNS
========================= */

.footer-column h3 {

    position: relative;

    color: #fff;

    font-size: 19px;

    margin:
        0 0 25px;

    padding-bottom: 12px;

}


.footer-column h3::after {

    content: "";

    position: absolute;

    right: 0;

    bottom: 0;

    width: 45px;

    height: 2px;

    background:
        var(--blue);

}


/* =========================
   COMPANY
========================= */

.footer-company p {

    max-width: 330px;

    color: #aebdc6;

    font-size: 14px;

    line-height: 2;

    margin:
        20px 0 22px;

}


.footer-logo {

    width: 125px;

    height: auto;

}


/* =========================
   LINKS
========================= */

.footer-column ul {

    list-style: none;

    margin: 0;

    padding: 0;

}


.footer-column li {

    margin-bottom: 11px;

}


.footer-column li a {

    color: #aebdc6;

    font-size: 14px;

    transition:
        .25s ease;

}


.footer-column li a:hover {

    color: #25a8d6;

    padding-right: 5px;

}


/* =========================
   SOCIAL
========================= */

.footer-social {

    display: flex;

    align-items: center;

    gap: 10px;

}


.footer-social a {

    width: 40px;

    height: 40px;

    border:
        1px solid
        rgba(255,255,255,.16);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #fff;

    transition:
        .25s ease;

}


.footer-social a:hover {

    background:
        var(--blue);

    border-color:
        var(--blue);

    transform:
        translateY(-3px);

}


/* =========================
   CONTACT
========================= */

.footer-contact {

    direction: rtl;

}


.contact-item {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 17px;

    color: #aebdc6;

    font-size: 14px;

    line-height: 1.8;

}


.contact-item i {

    color:
        var(--blue);

    font-size: 17px;

    width: 20px;

    margin-top: 5px;

    flex-shrink: 0;

}


.contact-item a {

    color: #aebdc6;

    transition: .25s;

}


.contact-item a:hover {

    color: #fff;

}


/* =========================
   BOTTOM
========================= */

.footer-bottom {

    border-top:
        1px solid
        rgba(255,255,255,.1);

    background:
        #05101a;

}


.footer-bottom-inner {

    min-height: 65px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

}


.footer-bottom p {

    margin: 0;

    color:
        #8698a3;

    font-size: 12px;

}


/* =========================
   MOBILE
========================= */

@media (max-width: 980px) {

    .footer-main {

        grid-template-columns:
            1fr 1fr;

        gap: 40px;

    }

}


@media (max-width: 640px) {

    .footer-main {

        grid-template-columns:
            1fr;

        gap: 35px;

        padding:
            50px 0 40px;

    }


    .footer-bottom-inner {

        min-height: auto;

        padding:
            18px 0;

        flex-direction: column;

        justify-content: center;

        text-align: center;

        gap: 5px;

    }


    .footer-logo {

        width: 110px;

    }

}


/* =========================================================
   ANIMATIONS
========================================================= */

.reveal {

    opacity: 0;

    transform:
        translateY(18px);

    transition:
        opacity .7s ease,
        transform .7s ease;

}


.reveal.visible {

    opacity: 1;

    transform: none;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 980px) {

    .top-contact {

        font-size: 11px;

        gap: 8px;

    }


    .topbar-inner {

        justify-content: center;

    }


    .social {

        display: none;

    }


    .site-header {

        top: 50px;

    }


    .nav-wrap {

        min-height: 78px;

    }


    .hamburger {

        display: block;

    }


    .lang-switch {

        margin-inline-start: 0;

        padding:
            9px 14px;

    }


    .main-nav {

        position: absolute;

        right: 4%;

        left: 4%;

        top: 76px;

        display: none;

        flex-direction: column;

        align-items: stretch;

        background:
            rgba(4,17,28,.98);

        padding: 15px;

    }


    .site-header.menu-open
    .main-nav {

        display: flex;

    }


    .nav-link {

        text-align: center;

    }


    .nav-dropdown {

        width: 100%;

    }


    .dropdown-menu {

        position: static;

        visibility: visible;

        opacity: 1;

        transform: none;

        display: none;

        width: 100%;

        box-shadow: none;

    }


    .nav-dropdown.open
    .dropdown-menu {

        display: block;

    }


    .brand {

        width: 90px;

    }


    .brand img {

        width: 82px;

    }


    .hero {

        min-height: 690px;

    }


    .hero-copy {

        margin: 0 auto;

        text-align: center;

    }


    .hero-copy h1 {

        font-size: 54px;

    }


    .hero-copy p {

        font-size: 16px;

    }


    .hero-arrow {

        width: 50px;

        height: 50px;

        font-size: 30px;

    }


    .about-grid,
    .contact-grid,
    .vision-grid {

        grid-template-columns: 1fr;

    }


    .about-image {

        order: 1;

    }


    .about-copy {

        order: 2;

    }


    .service-grid {

        grid-template-columns: 1fr;

    }


    .gallery-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .map-panel img {

        height: 360px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {

    .topbar {

        display: none;

    }


    .site-header {

        top: 0;

    }


    .hero {

        min-height: 650px;

    }


    .hero-copy h1 {

        font-size: 42px;

    }


    .section {

        padding: 65px 0;

    }


    .section-heading h2,
    .about-copy h2 {

        font-size: 32px;

    }


    .gallery-grid {

        grid-template-columns: 1fr;

    }


    .form-row {

        grid-template-columns: 1fr;

        gap: 12px;

    }


    .contact-grid {

        gap: 35px;

    }


    .hero-arrow {

        display: none;

    }


    .floating-actions a {

        width: 42px;

        height: 42px;

        font-size: 18px;

    }


    .footer-inner {

        flex-direction: column;

        gap: 5px;

    }

}