/* @font-face {
    font-family: Cairo;
    src: url("https://wjhaty.com/fonts/Cairo.ttf");
    font-display: swap;
}
 */
:root {
    --primary: #f37c1f;
    --secondary: #e9c300;
    --dark: #252525;
    --muted: #777;
    --light: #f8f8f8;
    --border: #ececec;
    --shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: "Tajawal", sans-serif;
    background: #fff;
    color: var(--dark);
    overflow-x: hidden;
}

a {
    text-decoration: none !important;
}

img {
    max-width: 100%;
}

.container {
    padding-right: 15px;
    padding-left: 15px;
}

#top-nav {
    min-height: 40px;
    background: #fff;
    border-bottom: 1px solid var(--border);
}

#top-nav .container {
    min-height: 40px;
    display: flex;
    align-items: center;
    gap: 18px;
}

#top-nav a {
    color: #777;
    font-size: 12px;
    transition: .2s ease;
}

#top-nav a:hover {
    color: var(--primary);
}

#main-nav {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    position: relative;
    z-index: 20;
    box-shadow: 0 8px 20px rgba(243, 124, 31, .16);
}

.main-nav-inner {
    min-height: 92px;
    display: flex;
    align-items: center;
    gap: 25px;
}

.brand img {
    width: 86px;
    max-height: 65px;
    object-fit: contain;
}

.nav-content {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 0;
}

.nav-content a {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    position: relative;
}

.nav-content a::after {
    content: "";
    width: 0;
    height: 2px;
    position: absolute;
    right: 0;
    bottom: -8px;
    background: #fff;
    transition: .25s ease;
}

.nav-content a:hover::after {
    width: 100%;
}

.search {
    flex: 1;
    max-width: 430px;
    margin-inline-start: auto;
}

.search .input-group {
    flex-wrap: nowrap;
}

.search .form-control {
    border: 0;
    min-width: 0;
    height: 43px;
    font-size: 13px;
    box-shadow: none !important;
}

.search .city-select {
    max-width: 115px;
    border-right: 1px solid #eee;
}

.search-btn {
    height: 43px;
    background: #fff;
    color: var(--primary);
    border: 0;
    min-width: 48px;
}

.actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.action-btn,
.language-btn {
    color: #fff;
    background: transparent;
    border: 0;
    padding: 7px;
    cursor: pointer;
    font-size: 18px;
}

.language-btn {
    font-size: 12px;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 20px;
    padding: 5px 10px;
}

.section-space {
    padding: 75px 0;
}

.section-light {
    background: var(--light);
}

.section-heading {
    margin-bottom: 32px;
}

.section-heading span {
    display: block;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 7px;
}

.section-heading h2 {
    font-size: 28px;
    font-weight: 800;
    margin: 0;
}

.section-heading p {
    color: var(--muted);
    font-size: 14px;
    margin: 8px 0 0;
}

.section-link {
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
}

.home-hero {
    position: relative;
    padding: 40px 0 60px;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background: url("../images/map.jpg") center / cover no-repeat;
    opacity: .07;
    pointer-events: none;
}

.hero-container {
    position: relative;
}

.banner-slide {
    min-height: 410px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
}

.banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.banner-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .42), rgba(0, 0, 0, .04));
}

.banner-content {
    position: relative;
    min-height: 410px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 45px 8%;
}

.banner-copy {
    color: #fff;
    max-width: 480px;
    position: relative;
    z-index: 2;
}

.banner-badge {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 20px;
    padding: 5px 13px;
    font-size: 12px;
    margin-bottom: 15px;
}

.banner-copy h1 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 12px;
}

.banner-copy p {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 24px;
}

.banner-btn {
    background: #fff;
    color: var(--primary);
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 700;
}

.banner-image {
    max-height: 365px;
    width: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.banner-pagination {
    bottom: 16px !important;
}

.banner-pagination .swiper-pagination-bullet {
    background: #fff;
    opacity: .6;
}

.category-card {
    display: block;
    height: 250px;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #ddd;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}

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

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .8), rgba(0, 0, 0, .05));
}

.category-card-content {
    position: absolute;
    right: 20px;
    left: 20px;
    bottom: 20px;
    color: #fff;
}

.category-card-content h3 {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 6px;
}

.category-card-content span {
    font-size: 12px;
    opacity: .9;
}

.place-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    height: 100%;
    transition: transform .25s ease, box-shadow .25s ease;
}

.place-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.place-image-wrap {
    height: 190px;
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
}

.place-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.place-card:hover .place-image {
    transform: scale(1.06);
}

.add-to-wish {
    position: absolute;
    top: 13px;
    left: 13px;
    z-index: 5;
    width: 37px;
    height: 37px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #d95252;
    font-size: 17px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .12);
}

.premium-badge {
    position: absolute;
    right: 12px;
    top: 12px;
    color: #fff;
    background: var(--primary);
    padding: 5px 9px;
    border-radius: 14px;
    font-size: 11px;
}

.place-card-body {
    padding: 16px;
}

.place-category {
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
}

.place-card h3 {
    margin: 7px 0 13px;
    min-height: 46px;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 800;
}

.place-card h3 a {
    color: var(--dark);
}

.place-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    color: #888;
    font-size: 11px;
}

.rating {
    color: #f2ad22;
    white-space: nowrap;
}

.rating small {
    color: #999;
    margin-right: 4px;
}

.place-city {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.place-card-link {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.add-to-wish {
    z-index: 6;
}

.download-banner {
    min-height: 330px;
    border-radius: 28px;
    overflow: hidden;
    padding: 30px 8%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    position: relative;
}

.download-banner::before {
    content: "";
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, .12);
    border-radius: 50%;
    position: absolute;
    top: -140px;
    left: -90px;
}

.download-copy,
.download-image-wrap {
    position: relative;
    z-index: 2;
}

.download-copy {
    max-width: 560px;
}

.download-copy span {
    font-size: 13px;
}

.download-copy h2 {
    font-size: 30px;
    font-weight: 800;
    margin: 10px 0;
}

.download-copy p {
    line-height: 1.8;
}

.download-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.download-actions img {
    width: 115px;
}

.download-direct {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 13px;
}

.download-image-wrap img {
    height: 350px;
    width: auto;
    object-fit: contain;
    margin-bottom: -55px;
}

footer {
    padding: 65px 0 35px;
    background: #202020;
    color: #fff;
}

.footer-logo {
    width: 150px;
    max-height: 75px;
    object-fit: contain;
    margin-bottom: 18px;
}

.footer-text {
    color: #ddd;
    font-size: 14px;
}

footer h6 {
    color: var(--secondary);
    font-weight: 800;
    margin-bottom: 20px;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer li {
    margin-bottom: 9px;
}

footer li a {
    color: #ccc;
    font-size: 13px;
    transition: .2s ease;
}

footer li a:hover {
    color: #fff;
    padding-right: 4px;
}

.social-links {
    display: flex;
    gap: 9px;
}

.social-links a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    color: #fff;
    transition: .2s ease;
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
}

@media (max-width: 991px) {
    .main-nav-inner {
        gap: 15px;
    }

    .search {
        max-width: none;
    }

    .banner-copy h1 {
        font-size: 30px;
    }

    .banner-image {
        max-height: 300px;
    }
}

@media (max-width: 767px) {
    #top-nav .container {
        justify-content: center;
        gap: 10px;
    }

    #top-nav a {
        font-size: 10px;
    }

    .main-nav-inner {
        min-height: 72px;
        justify-content: space-between;
    }

    .brand img {
        width: 70px;
    }

    .actions {
        gap: 3px;
    }

    .section-space {
        padding: 48px 0;
    }

    .section-heading h2 {
        font-size: 23px;
    }

    .banner-slide,
    .banner-content {
        min-height: 480px;
    }

    .banner-content {
        padding: 35px 25px;
        flex-direction: column-reverse;
        text-align: center;
        justify-content: center;
    }

    .banner-copy h1 {
        font-size: 25px;
    }

    .banner-copy p {
        font-size: 14px;
    }

    .banner-image {
        max-height: 220px;
    }

    .download-banner {
        min-height: 550px;
        text-align: center;
        flex-direction: column;
        padding: 35px 25px 0;
    }

    .download-copy h2 {
        font-size: 23px;
    }

    .download-actions {
        justify-content: center;
    }

    .download-image-wrap img {
        height: 250px;
        margin-bottom: -35px;
    }

    .place-image-wrap {
        height: 180px;
    }
}
.home-map-hero {
    min-height: 560px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 85% 20%, rgba(233, 195, 0, .28), transparent 24%),
        radial-gradient(circle at 12% 78%, rgba(243, 124, 31, .22), transparent 30%),
        linear-gradient(135deg, #fff8ef 0%, #ffffff 48%, #fff7e8 100%);
}

.home-map-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(243, 124, 31, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(243, 124, 31, .045) 1px, transparent 1px);
    background-size: 45px 45px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .8), transparent);
}

.home-map-animation {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.map-road {
    position: absolute;
    height: 2px;
    border-top: 2px dashed rgba(243, 124, 31, .26);
    transform-origin: center;
}

.home-road-1 {
    width: 780px;
    top: 23%;
    right: -150px;
    transform: rotate(-18deg);
}

.home-road-2 {
    width: 720px;
    bottom: 19%;
    left: -180px;
    transform: rotate(19deg);
}

.home-road-3 {
    width: 420px;
    top: 49%;
    left: 22%;
    transform: rotate(78deg);
}

.home-road-4 {
    width: 360px;
    top: 18%;
    left: 4%;
    transform: rotate(34deg);
}

.hero-pin {
    position: absolute;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #f37c1f, #e9c300);
    border-radius: 50% 50% 50% 0;
    box-shadow: 0 14px 30px rgba(243, 124, 31, .26);
    transform: rotate(-45deg);
    animation: heroPinFloat 4s ease-in-out infinite;
}

.hero-pin i {
    transform: rotate(45deg);
    font-size: 17px;
}

.hero-pin::after {
    content: "";
    position: absolute;
    bottom: -28px;
    left: 11px;
    width: 48px;
    height: 13px;
    border-radius: 50%;
    background: rgba(243, 124, 31, .16);
    transform: rotate(45deg);
    animation: heroPinShadow 4s ease-in-out infinite;
}

.pin-one {
    top: 19%;
    right: 14%;
    animation-delay: .2s;
}

.pin-two {
    top: 65%;
    right: 27%;
    animation-delay: 1.1s;
}

.pin-three {
    top: 31%;
    left: 11%;
    animation-delay: 1.8s;
}

.pin-four {
    bottom: 12%;
    left: 20%;
    animation-delay: 2.6s;
}

.pin-five {
    top: 54%;
    left: 47%;
    animation-delay: .8s;
}

.hero-orbit {
    position: absolute;
    border: 1px solid rgba(243, 124, 31, .16);
    border-radius: 50%;
    animation: heroOrbitRotate 18s linear infinite;
}

.hero-orbit::before,
.hero-orbit::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: #f37c1f;
    box-shadow: 0 0 0 7px rgba(243, 124, 31, .08);
}

.hero-orbit::before {
    width: 9px;
    height: 9px;
    top: 15%;
    left: 9%;
}

.hero-orbit::after {
    width: 11px;
    height: 11px;
    bottom: 10%;
    right: 5%;
    background: #e9c300;
}

.hero-orbit-one {
    width: 310px;
    height: 310px;
    top: 18%;
    right: 6%;
}

.hero-orbit-two {
    width: 220px;
    height: 220px;
    bottom: 8%;
    left: 9%;
    animation-direction: reverse;
    animation-duration: 14s;
}

.home-map-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 70px;
    padding-bottom: 70px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border: 1px solid rgba(243, 124, 31, .18);
    border-radius: 24px;
    background: rgba(255, 255, 255, .8);
    color: #f37c1f;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(243, 124, 31, .06);
}

.home-map-hero h1 {
    margin: 20px 0 16px;
    color: #242424;
    font-size: 46px;
    line-height: 1.4;
    font-weight: 900;
}

.home-map-hero h1 span {
    color: #f37c1f;
}

.home-map-hero p {
    max-width: 590px;
    margin: 0 0 26px;
    color: #707070;
    font-size: 16px;
    line-height: 2;
}

.hero-search-form {
    max-width: 650px;
}

.hero-search-input {
    display: flex;
    align-items: center;
    min-height: 62px;
    padding: 7px;
    border: 1px solid rgba(243, 124, 31, .16);
    border-radius: 16px;
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 15px 35px rgba(53, 35, 7, .1);
}

.hero-search-input>i {
    margin: 0 12px;
    color: #f37c1f;
    font-size: 17px;
}

.hero-search-input input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    color: #333;
    font-size: 14px;
    background: transparent;
}

.hero-search-input select {
    width: 130px;
    height: 40px;
    padding: 0 8px;
    border: 0;
    border-right: 1px solid #eee;
    color: #666;
    font-family: inherit;
    font-size: 12px;
    outline: 0;
    background: transparent;
}

.hero-search-input button {
    min-width: 110px;
    height: 46px;
    border: 0;
    border-radius: 11px;
    background: linear-gradient(135deg, #f37c1f, #e9c300);
    color: #fff;
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    transition: .2s ease;
}

.hero-search-input button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(243, 124, 31, .25);
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
    margin-top: 30px;
}

.hero-stats div {
    display: flex;
    flex-direction: column;
}

.hero-stats strong {
    color: #333;
    font-size: 21px;
    font-weight: 900;
}

.hero-stats span {
    color: #888;
    font-size: 12px;
}

.hero-map-card {
    max-width: 380px;
    margin-right: auto;
    padding: 20px;
    border: 1px solid rgba(243, 124, 31, .15);
    border-radius: 22px;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 22px 55px rgba(59, 39, 8, .12);
    backdrop-filter: blur(10px);
    animation: heroCardFloat 5s ease-in-out infinite;
}

.hero-map-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 15px;
    margin-bottom: 7px;
    color: #333;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    font-weight: 800;
}

.hero-map-live-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #49ad62;
    box-shadow: 0 0 0 5px rgba(73, 173, 98, .12);
    animation: liveDotPulse 1.8s ease-in-out infinite;
}

.hero-map-card-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid #f1f1f1;
}

.hero-map-card-item:last-child {
    border-bottom: 0;
}

.hero-map-card-icon {
    width: 39px;
    height: 39px;
    flex: 0 0 39px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #f37c1f;
    background: rgba(243, 124, 31, .1);
}

.hero-map-card-item div {
    flex: 1;
}

.hero-map-card-item strong {
    display: block;
    color: #444;
    font-size: 13px;
}

.hero-map-card-item small {
    display: block;
    margin-top: 2px;
    color: #999;
    font-size: 11px;
}

.hero-map-card-item>i {
    color: #bbb;
    font-size: 12px;
}

@keyframes heroPinFloat {

    0%,
    100% {
        margin-top: 0;
    }

    50% {
        margin-top: -15px;
    }
}

@keyframes heroPinShadow {

    0%,
    100% {
        opacity: .55;
        transform: rotate(45deg) scale(1);
    }

    50% {
        opacity: .18;
        transform: rotate(45deg) scale(.65);
    }
}

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

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

@keyframes heroCardFloat {

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

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

@keyframes liveDotPulse {

    0%,
    100% {
        box-shadow: 0 0 0 4px rgba(73, 173, 98, .12);
    }

    50% {
        box-shadow: 0 0 0 9px rgba(73, 173, 98, .04);
    }
}

@media (max-width: 991px) {
    .home-map-hero {
        min-height: auto;
    }

    .home-map-hero-content {
        padding-top: 60px;
        padding-bottom: 60px;
        text-align: center;
    }

    .home-map-hero p {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-search-form {
        margin-right: auto;
        margin-left: auto;
    }

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

    .pin-three,
    .pin-four,
    .hero-orbit-two {
        display: none;
    }
}

@media (max-width: 576px) {
    .home-map-hero-content {
        padding-top: 45px;
        padding-bottom: 45px;
    }

    .home-map-hero h1 {
        font-size: 30px;
    }

    .home-map-hero p {
        font-size: 14px;
    }

    .hero-search-input {
        min-height: auto;
        flex-wrap: wrap;
        padding: 10px;
        gap: 8px;
    }

    .hero-search-input>i {
        margin: 0 6px;
    }

    .hero-search-input input {
        width: calc(100% - 38px);
        flex: initial;
        height: 36px;
    }

    .hero-search-input select {
        width: calc(50% - 4px);
        height: 42px;
        border: 1px solid #eee;
        border-radius: 9px;
    }

    .hero-search-input button {
        width: calc(50% - 4px);
        min-width: 0;
        height: 42px;
    }

    .hero-stats {
        gap: 15px;
    }

    .hero-stats strong {
        font-size: 17px;
    }

    .pin-one {
        top: 11%;
        right: 8%;
    }

    .pin-two {
        top: 72%;
        right: 7%;
    }

    .pin-five {
        top: 45%;
        left: 7%;
    }

    .hero-orbit-one {
        width: 220px;
        height: 220px;
        right: -70px;
    }
}