* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Vazirmatn", sans-serif;
}

body {

    background: #f8fafc;

    padding-bottom: 110px;

    color: #0f172a;

}

.container {

    max-width: 500px;

    margin: auto;

}

.header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 18px;

    background: white;

    box-shadow: 0 2px 12px rgba(0, 0, 0, .04);

}

.icon-btn {

    border: none;

    background: none;

    font-size: 22px;

    cursor: pointer;

    color: #0f172a;

}

.logo {

    text-align: center;

}

.logo h2 {

    font-size: 20px;

    color: #22c55e;

}

.logo span {

    font-size: 12px;

    color: #64748b;

}

.hero {

    padding: 15px;

}

.slider {

    position: relative;

    height: 220px;

    overflow: hidden;

    border-radius: 24px;

}

.slider img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}

.overlay {

    position: absolute;
    inset: 0;

    background: linear-gradient(to top,
            rgba(0, 0, 0, .65),
            rgba(0, 0, 0, .2));

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    color: white;

    padding: 20px;

}

.overlay h1 {

    font-size: 38px;

    font-weight: 800;

}

.overlay p {

    margin-top: 5px;

    font-size: 15px;

}

.overlay button {

    margin-top: 15px;

    width: 140px;

    padding: 12px;

    border: none;

    border-radius: 14px;

    background: #22c55e;

    color: white;

    font-weight: 600;

}

/* اب و هوا */

.weather-card {

    position: relative;

    overflow: hidden;

    margin: 0 15px 15px;

    padding: 22px;

    border-radius: 28px;

    /* background:
linear-gradient(
135deg,
#7c3aed,
#9333ea,
#ec4899
); */

    background:
        linear-gradient(135deg,
            #0492d3,
            #0344d1,
            #27b3f0);

    /* background:
linear-gradient(
135deg,
#065f46,
#10b981,
#34d399
); */

    /* background:
linear-gradient(
135deg,
#15803d,
#22c55e,
#4ade80
); */

    color: white;

    display: flex;

    justify-content: space-between;

    align-items: center;

    box-shadow:
        0 15px 35px rgba(37, 99, 235, .35);

    animation:
        weatherFloat 5s ease-in-out infinite;

}

/* نور پس زمینه */

.weather-card::before {

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, .08);

    top: -60px;
    left: -50px;

    animation:
        weatherGlow 8s infinite;

}

.weather-card::after {

    content: "";

    position: absolute;

    width: 100px;
    height: 100px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, .05);

    bottom: -20px;
    right: -20px;

    animation:
        weatherGlow 6s infinite;

}

.weather-left,
.weather-right {

    position: relative;

    z-index: 2;

}

.weather-left {

    display: flex;

    align-items: center;

    gap: 15px;

}

.weather-icon {

    font-size: 48px;

    animation:
        weatherPulse 3s infinite;

}

.weather-left h2 {

    font-size: 36px;

    font-weight: 800;

}

.weather-left p {

    font-size: 13px;

    opacity: .9;

}

.weather-right {

    text-align: left;

}

.weather-right h3 {

    font-size: 18px;

    font-weight: 700;

}

.weather-right span {

    font-size: 14px;

    opacity: .9;

}

/* شناور شدن کارت */

@keyframes weatherFloat {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }

    100% {
        transform: translateY(0);
    }

}

/* نور متحرک */

@keyframes weatherGlow {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.25);
    }

    100% {
        transform: scale(1);
    }

}

/* تپش آیکون */

@keyframes weatherPulse {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }

}

.live-weather {

    display: flex;

    align-items: center;

    gap: 6px;

    font-size: 11px;

    margin-top: 5px;

    opacity: .95;

}

.live-dot {

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #22c55e;

    animation: livePulse 1.5s infinite;

}

@keyframes livePulse {

    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .5;
        transform: scale(1.4);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }

}

/* اب و هوا */

.quick-access {

    display: flex;

    gap: 12px;

    overflow-x: auto;

    scrollbar-width: none;

    padding: 15px;

    cursor: grab;

}



.quick-access::-webkit-scrollbar {

    display: none;

}

.quick-access:active {

    cursor: grabbing;

}

.quick-card {

    min-width: 95px;

    background: white;

    padding: 18px 12px;

    border-radius: 20px;

    text-align: center;

    box-shadow: 0 5px 15px rgba(0, 0, 0, .06);

}

.quick-card i {

    font-size: 24px;

    color: #22c55e;

}

.quick-card span {

    display: block;

    margin-top: 10px;

    font-size: 13px;

}


.services-shortcut {

    padding: 15px;

}

.services-banner {

    background: linear-gradient(135deg,
            #0f172a,
            #1e293b);

    padding: 22px;

    border-radius: 24px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    color: white;

}

.services-banner p {

    margin-top: 5px;

    font-size: 13px;

    opacity: .8;

}

.services-banner button {

    border: none;

    background: white;

    color: #0f172a;

    padding: 10px 18px;

    border-radius: 12px;

    font-weight: 700;

}

.map-section {

    padding: 15px;

}

.map-banner {

    background: rgb(210, 255, 245);

    padding: 20px;

    border-radius: 24px;

    display: flex;

    align-items: center;

    gap: 15px;

    box-shadow: 0 5px 15px rgba(0, 0, 0, .06);

}

.map-icon {

    width: 60px;

    height: 60px;

    border-radius: 18px;

    background: #202020;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 28px;

    color: #22c55e;

}

.map-text {

    flex: 1;

}

.map-text p {

    font-size: 13px;

    color: #64748b;

    margin-top: 4px;

}

.map-banner button {

    border: none;

    background: #22c55e;

    color: white;

    padding: 10px 15px;

    border-radius: 12px;

}

/* پایان */

.about {

    margin: 15px;

    padding: 22px;

    background: linear-gradient(135deg,
            #111827,
            #1f2937);

    border-radius: 24px;

    line-height: 2;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .25);
    position: relative;
    overflow: hidden;
}

.about::before {

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    background:
        rgba(251, 191, 36, .12);

    top: -60px;
    left: -60px;

    animation:
        goldFloat 8s infinite ease-in-out;

}

.about::after {

    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    border-radius: 50%;

    background:
        rgba(251, 191, 36, .08);

    bottom: -30px;
    right: -30px;

    animation:
        goldFloat 6s infinite ease-in-out;

}

.about {

    animation:
        aboutFloat 5s ease-in-out infinite;

}

@keyframes aboutFloat {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }

    100% {
        transform: translateY(0);
    }

}

@keyframes goldFloat {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.25);
    }

    100% {
        transform: scale(1);
    }

}

.about h3 {

    margin-bottom: 12px;

    color: #fbbf24;

}

.about h3 i {

    color: #fbbf24;

    margin-left: 8px;

    animation:
        starTwinkle 2s infinite;

}

@keyframes starTwinkle {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .5;
        transform: scale(1.2);
    }

}


.about p {

    color: #e5e7eb;

}

/* شروع */
.bottom-nav {

    position: fixed;

    bottom: 15px;

    left: 50%;

    transform: translateX(-50%);

    width: 95%;

    max-width: 500px;

    height: 75px;

    background: rgba(255, 255, 255, .95);

    backdrop-filter: blur(15px);

    border-radius: 24px;

    display: flex;

    justify-content: space-around;

    align-items: center;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);

    z-index: 9999;

}

.nav-item {

    text-decoration: none;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 4px;

    font-size: 11px;

    color: #64748b;

}

.nav-icon {

    font-size: 18px;

}

.nav-item.active {

    color: #22c55e;

    font-weight: 700;

}

.nav-item.active .nav-icon {

    width: 38px;

    height: 38px;

    display: flex;

    justify-content: center;

    align-items: center;

    background: #22c55e;

    color: white;

    border-radius: 12px;

}

/* menu */
.drawer {

    position: fixed;

    top: 0;
    right: -320px;

    width: 300px;
    height: 100vh;

    background: white;

    z-index: 99999;

    transition: .35s ease;

    box-shadow:
        -10px 0 40px rgba(0, 0, 0, .15);

}

.drawer.active {

    right: 0;

}

.drawer-header {

    padding: 20px;

    background: linear-gradient(135deg,
            #16a34a,
            #22c55e);

    color: white;

}

.drawer-top {

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

}

.profile-area {

    display: flex;

    gap: 12px;

    align-items: center;

}

.profile-avatar {

    width: 55px;
    height: 55px;

    border-radius: 16px;

    background: rgba(255, 255, 255, .18);

    display: flex;

    justify-content: center;
    align-items: center;

    font-size: 24px;

    backdrop-filter: blur(10px);

}

.close-drawer {

    width: 40px;
    height: 40px;

    border: none;

    border-radius: 12px;

    background: rgba(255, 255, 255, .2);

    color: white;

    cursor: pointer;

}

.drawer-menu {

    padding: 10px;

}

.drawer-menu a {

    display: flex;

    align-items: center;

    gap: 14px;

    text-decoration: none;

    color: #0f172a;

    padding: 16px;

    border-radius: 14px;

    transition: .2s;

}

.drawer-menu a:hover {

    background: #f1f5f9;

}

.drawer-menu i {

    font-size: 20px;

    color: #22c55e;

    width: 24px;

    text-align: center;

}

.drawer-overlay {

    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, .4);

    backdrop-filter: blur(3px);

    opacity: 0;

    visibility: hidden;

    transition: .3s;

    z-index: 99998;

}

.drawer-overlay.active {

    opacity: 1;

    visibility: visible;

}

/* menu */
.service-card {

    text-decoration: none;

    color: inherit;

}

/* 🔥 انیمیشن پایه آیکن‌ها */
.quick-card i,
.drawer-menu i,
.nav-icon i {
    transition: all 0.25s ease;
}

/* 🌟 هاور (وقتی لمس/کلیک میشه) */
.quick-card:active i,
.drawer-menu a:active i,
.nav-item:active i {
    transform: scale(1.15) rotate(8deg);
    filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.2));
}

/* 💓 حالت ضربان نرم برای آیکن‌های مهم */
.weather-icon,
.nav-item.active .nav-icon i {
    animation: pulse 1.8s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

/* 🌈 ورود نرم صفحه کارت‌ها */
.quick-card {
    animation: fadeUp 0.6s ease both;
}

.quick-card:nth-child(1) {
    animation-delay: 0.05s;
}

.quick-card:nth-child(2) {
    animation-delay: 0.1s;
}

.quick-card:nth-child(3) {
    animation-delay: 0.15s;
}

.quick-card:nth-child(4) {
    animation-delay: 0.2s;
}

.quick-card:nth-child(5) {
    animation-delay: 0.25s;
}

.quick-card:nth-child(6) {
    animation-delay: 0.3s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ✨ کلیک نرم‌تر */
.quick-card:active,
.drawer-menu a:active,
.nav-item:active {
    transform: scale(0.95);
}

.drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: white;
    z-index: 99999;

    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);

    box-shadow: -10px 0 40px rgba(0, 0, 0, .15);
    will-change: transform;
}

.drawer.active {
    transform: translateX(0);
}

/* overlay حرفه‌ای‌تر */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    backdrop-filter: blur(4px);

    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.quick-card i,
.drawer-menu i,
.nav-icon i {
    color: #64748b;
    /* رنگ پیش‌فرض خاکستری */
}


/* =====================================
   رزرو اقامتگاه و هتل
===================================== */

.stay-section {

    padding: 15px;

}

.stay-card {

    position: relative;

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 20px;

    border-radius: 24px;

    background: linear-gradient(135deg,
            #7f1d1d,
            #881337,
            #9f1239);

    box-shadow:
        0 10px 25px rgba(136, 19, 55, .25);

    overflow: hidden;

}

.stay-card::before {

    content: "";

    position: absolute;

    width: 180px;

    height: 180px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .08);

    top: -60px;

    left: -40px;

}

.stay-icon {

    width: 60px;

    height: 60px;

    border-radius: 18px;

    background: rgba(255, 255, 255, .15);

    backdrop-filter: blur(10px);

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 28px;

    color: white;

    flex-shrink: 0;

    z-index: 2;

}

.stay-content {

    flex: 1;

    z-index: 2;

}

.stay-content h3 {

    font-size: 18px;

    font-weight: 800;

    color: white;

    margin-bottom: 5px;

}

.stay-content p {

    font-size: 13px;

    color: rgba(255, 255, 255, .85);

    line-height: 1.8;

}

.stay-badge {

    position: absolute;

    top: 12px;

    left: 12px;

    background: #fbbf24;

    color: #7f1d1d;

    padding: 5px 10px;

    border-radius: 999px;

    font-size: 11px;

    font-weight: 800;

    z-index: 3;

    animation: pulseSoon 2s infinite;

}

@keyframes pulseSoon {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }

}

/* =====================================
   پارک و اسکان مسافر
===================================== */

.camp-section {

    padding: 15px;

}

.camp-card {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 20px;

    border-radius: 24px;
    background: linear-gradient(135deg,
            #dbeafe,
            #bfdbfe);

    box-shadow:
        0 10px 25px rgba(245, 158, 11, .15);

    position: relative;

    overflow: hidden;

}

.camp-card::before {

    content: "";

    position: absolute;

    width: 140px;

    height: 140px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, .25);

    top: -50px;

    left: -40px;

}

.camp-icon {

    width: 60px;

    height: 60px;

    border-radius: 18px;

    background: linear-gradient(135deg,
            #7c3aed,
            #9333ea);

    display: flex;

    justify-content: center;

    align-items: center;

    color: white;

    font-size: 28px;

    flex-shrink: 0;

    box-shadow:
        0 8px 20px rgba(245, 158, 11, .25);

}

.camp-content {

    flex: 1;

    z-index: 2;

}

.camp-content h3 {

    font-size: 18px;

    font-weight: 800;

    color: #78350f;

    margin-bottom: 4px;

}

.camp-content p {

    font-size: 13px;

    line-height: 1.8;

    color: #92400e;

}

.business-icon {

    position: relative;

}

.soon-badge {

    position: absolute;

    top: -6px;

    left: -12px;

    background: #f59e0b;

    color: white;

    font-size: 8px;

    font-weight: 700;

    padding: 2px 5px;

    border-radius: 999px;

    line-height: 1;

    white-space: nowrap;

}

/* پخش زنده */
/* =========================
   شبکه باران
========================= */

.tv-live-section {

    padding: 15px;

}

.tv-live-card {

    display: block;

    text-decoration: none;

    border-radius: 28px;

    overflow: hidden;

    background: white;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .08);

    transition: .3s;

}

.tv-live-card:active {

    transform: scale(.98);

}

/* بخش اصلی */

.tv-preview {

    position: relative;

    height: 220px;

    overflow: hidden;

    background:
        linear-gradient(135deg,
            #0f172a,
            #1e3a8a,
            #2563eb);

}

/* نورهای متحرک */

.tv-bg-shape {

    position: absolute;

    width: 220px;
    height: 220px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, .08);

    top: -80px;
    right: -50px;

    animation:
        floatGlow 8s infinite ease-in-out;

}

.tv-bg-shape2 {

    position: absolute;

    width: 160px;
    height: 160px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, .05);

    bottom: -50px;
    left: -30px;

    animation:
        floatGlow 6s infinite ease-in-out;

}

/* محتوا */

.tv-center {

    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    color: white;

    text-align: center;

    z-index: 2;

}

.tv-logo {

    width: 80px;
    height: 80px;

    border-radius: 24px;

    background:
        rgba(255, 255, 255, .15);

    backdrop-filter: blur(12px);

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 38px;

    margin-bottom: 15px;

}

.tv-live-badge {

    display: flex;

    align-items: center;

    gap: 8px;

    background:
        rgba(239, 68, 68, .95);

    padding: 6px 14px;

    border-radius: 999px;

    font-size: 12px;

    font-weight: 700;

    margin-bottom: 15px;

}

.tv-live-badge span {

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: white;

    animation:
        liveDot 1s infinite;

}

.tv-center h3 {

    font-size: 24px;

    font-weight: 800;

    margin-bottom: 8px;

}

.tv-center p {

    font-size: 14px;

    opacity: .9;

}

/* فوتر */

.tv-footer {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 18px 20px;

    border-top: 1px solid rgba(245, 158, 11, .3);

    background: linear-gradient(90deg,
            #1d4ed8,
            #2563eb);

}

.tv-platform {

    display: flex;

    align-items: center;

    gap: 8px;

    font-size: 14px;

    font-weight: 700;

    color: white;

}

.tv-watch {

    display: flex;

    align-items: center;

    gap: 6px;

    font-size: 14px;

    font-weight: 700;

    color: white;

}

/* انیمیشن */

@keyframes floatGlow {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.25);
    }

    100% {
        transform: scale(1);
    }

}

@keyframes liveDot {

    0% {
        opacity: 1;
    }

    50% {
        opacity: .3;
    }

    100% {
        opacity: 1;
    }

}

/* پخش زنده پایان */

/* .weather-icon{

width:50px;

height:50px;

object-fit:contain;

} */

html {
    scroll-behavior: smooth;
}

.icon-red {
    color: #ef4444 !important;
}

.icon-blue {
    color: #3b82f6 !important;
}

.icon-green {
    color: #22c55e !important;
}

.icon-purple {
    color: #a855f7 !important;
}

.icon-orange {
    color: #f59e0b !important;
}

.icon-pink {
    color: #ec4899 !important;
}

.icon-cyan {
    color: #06b6d4 !important;
}

.icon-emerald {
    color: #10b981 !important;
}

.icon-dark-green {
    color: #00b97c !important;
}

.icon-yellow {
    color: #ffee00 !important;
}

.icon-fuel {
    color: #059700 !important;
}

.bi {
    color: inherit;
}
.section-title{
    display:flex;
    align-items:center;
    gap:8px;
    margin:20px 16px 12px;
    font-size:15px;
    font-weight:700;
    color:#2d3748;
}

.section-title i{
    color:#3b82f6;
    font-size:16px;
}

#search-results{

    position:absolute;

    top:65px;

    left:0;
    right:0;

    background:#fff;

    border-radius:18px;

    max-height:300px;

    overflow-y:auto;

    box-shadow:
    0 10px 30px rgba(0,0,0,.12);

    display:none;

}

.search-item{

    padding:14px 18px;

    border-bottom:1px solid #f1f5f9;

    cursor:pointer;

}

.search-item:last-child{

    border-bottom:none;

}

.search-item:hover{

    background:#f8fafc;

}

.search-title{

    font-weight:700;

}

.search-category{

    font-size:12px;

    color:#64748b;

    margin-top:4px;

}