/* ================= ROOT ================= */

:root{

    --primary:#dc2626;
    --primary-hover:#b91c1c;

    --dark:#020617;

    --text:#0f172a;
    --muted:#64748b;

    --light:#f8fafc;
    --border:#e2e8f0;

    --radius-sm:16px;
    --radius-md:24px;
    --radius-lg:36px;

    --shadow-sm:
    0 10px 30px rgba(15,23,42,0.04);

    --shadow-md:
    0 20px 50px rgba(15,23,42,0.08);

    --shadow-lg:
    0 25px 80px rgba(15,23,42,0.12);

    --transition:0.25s ease;
}

/* ================= RESET ================= */

*{

    margin:0;
    padding:0;

    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;

    background:var(--light);

    color:var(--text);

    overflow-x:hidden;

    -webkit-font-smoothing:antialiased;
}

/* ================= GLOBAL ================= */

img{

    max-width:100%;

    display:block;
}

a{
    transition:var(--transition);
}

.container{
    position:relative;
}

/* ================= SCROLLBAR ================= */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#f1f5f9;
}

::-webkit-scrollbar-thumb{

    background:#cbd5e1;

    border-radius:999px;
}

::-webkit-scrollbar-thumb:hover{
    background:#94a3b8;
}

/* ================= SELECTION ================= */

::selection{

    background:var(--primary);

    color:#fff;
}

/* ================= NAVBAR ================= */

.main-navbar{

    position:sticky;

    top:0;

    z-index:999;

    background:
    rgba(255,255,255,0.72);

    backdrop-filter:blur(18px);

    border-bottom:
    1px solid rgba(226,232,240,0.8);

    padding:14px 0;

    transition:0.25s;
}

.main-navbar .container{

    display:flex;
    align-items:center;
}

/* BRAND */

.navbar-brand{

    display:flex;
    align-items:center;
    gap:14px;

    text-decoration:none;
}

.brand-icon{

    width:54px;
    height:54px;

    border-radius:18px;

    background:
    linear-gradient(
        135deg,
        #dc2626,
        #ef4444
    );

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:22px;

    box-shadow:
    0 10px 24px rgba(220,38,38,0.3);
}

.brand-text{

    display:flex;
    flex-direction:column;
}

.brand-title{

    font-size:24px;
    font-weight:800;

    color:#0f172a;

    line-height:1.1;

    letter-spacing:-0.6px;
}

.brand-title span{
    color:#dc2626;
}

.brand-text small{

    color:#64748b;

    font-size:12px;

    margin-top:4px;
}

/* NAV */

.navbar-nav{
    gap:12px;
}

.nav-link{

    position:relative;

    height:46px;

    display:flex;
    align-items:center;

    padding:0 18px !important;

    border-radius:14px;

    color:#334155 !important;

    font-weight:700;

    font-size:15px;

    transition:0.25s;
}

.nav-link:hover{

    background:#f1f5f9;

    color:#0f172a !important;
}

.nav-link.active{

    background:#fef2f2;

    color:#dc2626 !important;
}

/* RIGHT */

.navbar-right{

    display:flex;
    align-items:center;
    gap:14px;
}

.navbar-explore-btn{

    height:50px;

    padding:0 22px;

    border-radius:16px;

    background:#dc2626;

    color:#fff;

    text-decoration:none;

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    font-weight:700;

    box-shadow:
    0 12px 30px rgba(220,38,38,0.22);

    transition:0.25s;
}

.navbar-explore-btn:hover{

    background:#b91c1c;

    transform:translateY(-2px);

    color:#fff;
}

/* TOGGLE */

.navbar-toggler{

    width:50px;
    height:50px;

    border:none !important;

    border-radius:16px;

    background:#f8fafc;

    color:#0f172a;

    box-shadow:none !important;
}

/* ================= HERO ================= */

.hero{

    position:relative;

    min-height:70vh;

    display:flex;
    align-items:center;

    overflow:hidden;

    background:
    linear-gradient(
        135deg,
        #eff6ff 0%,
        #1c68b3 40%,
        #eef2ff 100%
    );
}

.hero::before{

    content:'';

    position:absolute;

    width:420px;
    height:420px;

    border-radius:50%;

    background:
    rgba(59,130,246,0.14);

    filter:blur(120px);

    top:-120px;
    left:-120px;
}

.hero::after{

    content:'';

    position:absolute;

    width:320px;
    height:320px;

    border-radius:50%;

    background:
    rgba(220,38,38,0.12);

    filter:blur(120px);

    bottom:-120px;
    right:-120px;
}

.hero-overlay{

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,0.2),
        rgba(255,255,255,0.4)
    );
}

.hero-content{

    position:relative;
    z-index:2;

    text-align:center;
    padding:80px 0;
    max-width:980px;
}

/* BADGE */

.hero-badge{

    display:inline-flex;
    align-items:center;
    gap:10px;

    height:42px;

    padding:0 18px;

    border-radius:999px;

    background:
    rgba(255,255,255,0.16);

    border:
    1px solid rgba(255,255,255,0.2);

    color:#fff;

    font-size:14px;
    font-weight:700;

    backdrop-filter:blur(12px);

    margin-bottom:24px;
}

/* HERO TITLE */

.hero h1{

    font-size:35px;
    font-weight:600;

    line-height:1.08;

    color:#fff;

    margin-bottom:24px;

    letter-spacing:-2px;

    text-shadow:
    0 4px 30px rgba(0,0,0,0.45);
}

/* HERO DESC */

.hero p{

    font-size:20px;

    color:
    rgba(255,255,255,0.92);

    line-height:1.9;

    max-width:760px;

    margin:auto auto 32px;
}

/* ================= SEARCH ================= */

.hero-search{

    max-width:760px;

    margin:auto;

    position:relative;
}

.hero-search input{

    width:100%;
    height:74px;

    border:none;

    border-radius:999px;

    padding:0 190px 0 28px;

    font-size:17px;

    outline:none;

    background:#fff;

    box-shadow:
    0 18px 60px rgba(0,0,0,0.2);
}

.hero-search button{

    position:absolute;

    right:10px;
    top:50%;

    transform:translateY(-50%);

    height:54px;

    padding:0 28px;

    border:none;

    border-radius:999px;

    background:var(--primary);

    color:#fff;

    font-weight:700;

    display:flex;
    align-items:center;
    gap:10px;

    z-index:2;
}

.hero-search button:hover{
    background:var(--primary-hover);
}

/* ================= STATS ================= */

.hero-stats{

    display:flex;
    justify-content:center;

    gap:22px;

    margin-top:42px;
    margin-bottom:30px;
    flex-wrap:wrap;
}

.hero-stat{

    min-width:180px;

    padding:20px 14px;

    border-radius:26px;

    background:
rgba(220,38,38,0.92);

    color:#fff;

    text-align:center;

    transition:0.25s;
}

.hero-stat:hover{

    transform:translateY(-4px);

    background:#38bdf8;
}

.hero-stat-value{

    font-size:28px;
    font-weight:800;

    margin-bottom:6px;
}

.hero-stat-label{

    font-size:14px;
}

/* ================= SECTION ================= */

.section{
    padding:90px 0;
}

.section-header{

    display:flex;

    justify-content:space-between;
    align-items:end;

    margin-bottom:36px;

    gap:20px;
}

.section-title{

    position:relative;

    padding-left:18px;

    font-size:40px;
    font-weight:800;

    margin-bottom:10px;
}

.section-title::before{

    content:'';

    position:absolute;

    left:0;
    top:12px;

    width:5px;
    height:30px;

    border-radius:999px;

    background:var(--primary);
}

.section-desc{

    color:var(--muted);

    line-height:1.8;

    max-width:680px;
}


/* ================= PLACE CARD ================= */

.place-card{

    position:relative;



    display:flex;

    flex-direction:column;

    background:#fff;

    border-radius:28px;

    overflow:hidden;

    border:1px solid #e2e8f0;

    transition:0.25s;

    box-shadow:
    0 8px 30px rgba(15,23,42,0.04);
}

.place-card:hover{

    transform:translateY(-6px);

    box-shadow:
    0 20px 50px rgba(15,23,42,0.08);
}

.place-thumb{

    width:100%;
    height:240px;

    object-fit:cover;

    background:#f1f5f9;
}

.place-body{

    flex:1;

    display:flex;

    flex-direction:column;

    padding:24px;
}

.place-category{

    display:inline-flex;

    align-items:center;

    height:34px;

    padding:0 14px;

    border-radius:999px;

    background:#fef2f2;

    color:#dc2626;

    font-size:12px;
    font-weight:800;

    text-decoration:none;

    transition:0.25s;
}

.place-category:hover{

    background:#dc2626;

    color:#fff;
}
.place-name{

    font-size:20px;
    font-weight:800;

    line-height:1.5;

    margin-bottom:14px;

    color:#0f172a;
}

.place-address{

    color:#64748b;

    line-height:1.9;

    margin-bottom:20px;

    font-size:15px;
}

/* FOOTER */

.place-footer{

    margin-top:auto;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:14px;
}

.place-rating{

    display:flex;

    align-items:center;

    gap:6px;

    font-weight:700;

    color:#0f172a;
}

.place-link{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    gap:8px;

    height:42px;

    padding:0 18px;

    border-radius:999px;

    background:#fef2f2;

    color:#dc2626;

    font-size:14px;
    font-weight:700;

    text-decoration:none;

    transition:0.25s;
}

.place-link:hover{

    background:#dc2626;

    color:#fff;

    transform:translateY(-2px);
}


.place-detail{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    gap:8px;

    height:42px;

    padding:0 18px;

    border-radius:999px;

    background:#fef2f2;

    color:#dc2626;

    font-size:14px;
    font-weight:700;

    text-decoration:none;

    transition:0.25s;
}

.place-detail:hover{

    background:#dc2626;

    color:#fff;

    transform:translateY(-2px);
}


.place-category{

    display:inline-flex;

    align-items:center;

    height:34px;

    padding:0 14px;

    border-radius:999px;

    background:#fef2f2;

    color:var(--primary);

    font-size:12px;
    font-weight:800;

    margin-bottom:14px;
}

.place-name{

    font-size:22px;
    font-weight:800;

    line-height:1.5;

    margin-bottom:14px;
}

.place-address{

    color:var(--muted);

    line-height:1.8;

    margin-bottom:18px;
}



/* ================= MAP ================= */



.map-preview-desktop{

    display:block;
}

.map-preview-mobile{

    display:none;
}


.map-section{

    position:relative;

    border-radius:var(--radius-lg);

    overflow:hidden;

    background:#fff;

    box-shadow:var(--shadow-lg);

    margin-top:20px;
}

.map-preview{

    position:relative;

    height:560px;

    overflow:hidden;
}

.map-preview img{

    width:100%;
    height:100%;

    object-fit:cover;

    object-position:top center;
}

/* OVERLAY */

.map-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        to bottom,
        rgba(15,23,42,0.08),
        rgba(15,23,42,0.68)
    );

    display:flex;

    align-items:flex-end;

    z-index:2;
}

/* CONTENT */

.map-content{

    position:relative;

    z-index:3;

    padding:42px;

    padding-top:260px;

    color:#fff;

    max-width:760px;
}

.map-content h3{

    font-size:46px;
    font-weight:800;

    line-height:1.2;

    margin-bottom:18px;

    color:#fff;

    text-shadow:
    0 4px 24px rgba(0,0,0,0.35);
}

.map-content p{

    font-size:18px;

    line-height:1.9;

    color:
    rgba(255,255,255,0.92);

    margin-bottom:28px;
}

/* BUTTON */

.map-btn{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    gap:12px;

    height:58px;

    padding:0 28px;

    border-radius:999px;

    background:#dc2626;

    color:#fff;

    text-decoration:none;

    font-weight:700;

    box-shadow:
    0 14px 40px rgba(220,38,38,0.28);

    transition:0.25s;
}

.map-btn:hover{

    background:#b91c1c;

    transform:translateY(-2px);

    color:#fff;
}

/* ================= FOOTER ================= */

/* ================= FOOTER ================= */

.footer{

    position:relative;

    background:
    linear-gradient(
        180deg,
        #020617,
        #0f172a
    );

    color:#fff;

    padding:80px 0 0;

    margin-top:80px;

    overflow:hidden;
}

/* WRAP */

.footer-wrap{

    display:grid;

    grid-template-columns:
    1.5fr
    1fr
    1fr
    1fr;

    gap:60px;

    padding-bottom:50px;
}

/* BRAND */

.footer-brand{
    max-width:420px;
}

.footer-logo{

    display:flex;

    align-items:center;

    gap:14px;

    font-size:32px;
    font-weight:800;

    margin-bottom:20px;
}

.footer-logo i{

    width:54px;
    height:54px;

    border-radius:18px;

    background:#dc2626;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    font-size:22px;

    box-shadow:
    0 10px 30px rgba(220,38,38,0.3);
}

.footer-logo span{

    color:#fff;
}

.footer-logo .text-danger{
    color:#ef4444 !important;
}

.footer-desc{

    color:
    rgba(255,255,255,0.78);

    line-height:1.9;

    font-size:15px;

    margin-bottom:26px;
}

/* SOCIAL */

.footer-social{

    display:flex;

    align-items:center;

    gap:12px;
}

.footer-social a{

    width:42px;
    height:42px;

    border-radius:14px;

    background:
    rgba(255,255,255,0.08);

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    transition:0.25s;
}

.footer-social a:hover{

    background:#dc2626;

    transform:translateY(-3px);

    color:#fff;
}

/* COL */

.footer-title{

    font-size:18px;
    font-weight:800;

    margin-bottom:20px;

    color:#fff;
}

.footer-col ul{

    list-style:none;

    padding:0;
    margin:0;
}

.footer-col li{

    margin-bottom:14px;
}

.footer-col a{

    color:
    rgba(255,255,255,0.72);

    text-decoration:none;

    transition:0.25s;
}

.footer-col a:hover{

    color:#fff;

    padding-left:6px;
}

/* LOCAL */

.footer-local{

    margin-top:20px;

    padding:20px 24px;

    border-radius:24px;

    background:
    rgba(255,255,255,0.05);

    border:
    1px solid rgba(255,255,255,0.06);

    color:
    rgba(255,255,255,0.8);

    line-height:1.9;

    text-align:center;

    font-size:14px;
}

/* BOTTOM */

.footer-bottom{

    margin-top:40px;

    border-top:
    1px solid rgba(255,255,255,0.08);

    padding:26px 0;

    display:flex;

    justify-content:space-between;
    align-items:center;

    gap:20px;

    flex-wrap:wrap;

    color:
    rgba(255,255,255,0.78);
}

.footer-bottom strong{
    color:#fff;
}

.footer-made{

    display:flex;

    align-items:center;

    gap:8px;
}

.footer-made i{

    color:#ef4444;
}

/* MOBILE */

@media(max-width:992px){

    .footer-wrap{

        grid-template-columns:1fr;

        gap:40px;
    }

    .footer-bottom{

        flex-direction:column;

        text-align:center;
    }
}
/* ================= MOBILE ================= */

@media(max-width:992px){

    .hero-search{

        display:flex;

        flex-direction:column;

        gap:14px;
    }

    .hero-search input{

        height:64px;

        padding:0 20px;
    }

    .hero-search button{

        position:relative;

        width:100%;

        height:58px;

        right:auto;
        top:auto;

        transform:none;

        justify-content:center;
    }

    .section{
        padding:35px 0;
    }

    .footer-wrap{

        grid-template-columns:1fr;
    }
    
        .map-preview{
        height:420px;
    }
    
    .map-content{
        padding:28px;
    }
    
    .map-content h3{
        font-size:32px;
    }
    
    .map-content p{
        font-size:16px;
    }
}

@media(max-width:768px){

      .hero{

        min-height:unset;

        padding:50px 0 70px;
        padding-bottom: 0px;
    }
    .hero h1{
            display:none;
        }

    .hero p{

        font-size:16px;

        line-height:1.8;
    }

    .hero-stats{

        display:grid;

        grid-template-columns:
        repeat(2,1fr);

        gap:14px;
    }

    .hero-stat{

        width:100%;

        min-width:unset;
    }
    .hero-content{

    padding-top:10px;
}

    .place-thumb{
        height:210px;
    }

    .section-title{
        font-size:32px;
    }

    .map-preview{
        height:420px;
    }
    
    
        .map-preview-desktop{
        display:none;
    }
    
    .map-preview-mobile{
    
        display:block;
    
        width:100%;
        height:100%;
    
        object-fit:cover;
    
        object-position:center;
    }
    
        .map-preview img{
    
        width:100%;
        height:100%;
    
        object-fit:cover;
    
        border-radius:inherit;
    }
}