*,
*::after {
    font-family: 'Peyda', Tahoma, sans-serif;
    box-sizing: border-box;
}

:root {
    --clr-primary: #052F4A;
    --clr-light-blue: #86CCEE;
    --clr-gold: #EFB03C;
    --clr-white: #FAFAFA;
    --card-bg: rgba(255, 255, 255, 0.07);
    --card-border: rgba(134, 204, 238, 0.2);
    --glass-bg: rgba(5, 47, 74, 0.72);
    --glass-border: rgba(134, 204, 238, 0.18);
    --glass-blur: blur(12px);
}

body {
    margin: 0;
    background: linear-gradient(to bottom, #052F4A 0%, rgba(0, 166, 244, 0.6) 100%);
    min-height: 100vh;
    direction: rtl;
    color: var(--clr-white);
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: url('img/body-weather-effect.png') center/cover no-repeat;
    pointer-events: none;
    opacity: 0.15;
}

.section-bg-weather-effect,
header,
footer,
main {
    position: relative;
}

.top-toolbar {
    border-bottom: 1px solid rgba(134, 204, 238, 0.15);
    padding: 5px 16px;
    overflow: hidden;
}

.ttb-icon {
    color: var(--clr-light-blue);
    font-size: 1rem;
    cursor: pointer;
    transition: color 0.2s;
    text-decoration: none;
    padding: 2px 5px;
    flex-shrink: 0;
}

.ttb-icon:hover {
    color: var(--clr-gold);
}

.ttb-marquee-desktop {
    min-width: 0;
}

.ttb-marquee-mobile {
    display: none;
    padding: 5px 0 2px;
    overflow: hidden;
}

.ss3-marquee {
    width: 100%;
    overflow: hidden;
}

.ss3-marquee-track {
    overflow: hidden;
    width: 100%;
}

.ss3-marquee-inner {
    display: inline-flex;
    gap: 80px;
    animation: ttbMarq 30s linear infinite;
    white-space: nowrap;
}

.ss3-marquee-inner span {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

@keyframes ttbMarq {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.main-header {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
    z-index: 1000;
    position: relative;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.main-header .container-fluid {
    align-items: center !important;
    min-height: 80px;
    display: flex;
}

.mh-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    text-decoration: none;
    align-self: center;
}

.mh-logo img {
    height: 70px;
    width: 110px;
    object-fit: contain;
}

.mh-banner {
    height: 80px;
    width: 240px;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}

.main-nav .nav-link {
    color: #fff !important;
    font-size: .9rem;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 4px;
    white-space: nowrap;
    transition: .2s;
    text-decoration: none !important;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
    background-color: rgba(134, 204, 238, .18);
    color: #86ccee !important;
}

.mega-mobile-menu {
    display: none;
}

.mega-parent.mob-mega-open>.mega-mobile-menu {
    display: block;
}

@media (min-width: 992px) {

    .mega-parent {
        position: static;
    }

    /* .mega-toggle::after {
        display: inline-block;
        margin-right: 5px;
        width: 0;
        height: 0;
        vertical-align: .2em;
        content: "";
        border-top: .3em solid;
        border-right: .3em solid transparent;
        border-bottom: 0;
        border-left: .3em solid transparent;
        transition: transform .2s;
    }

    .mega-toggle[aria-expanded="true"]::after {
        transform: rotate(180deg);
    } */

    .mega-menu {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        width: 640px;
        max-width: 90vw;
        margin: 0 auto;
        background: #0c2f44;
        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: 0 0 8px 8px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, .4);
        z-index: 1040;
        direction: rtl;
    }

    .mega-menu.mega-open {
        display: block;
    }

    .mega-wrapper {
        display: flex;
        flex-direction: row;
        min-height: 220px;
    }

    .mega-categories {
        width: 200px;
        flex-shrink: 0;
        border-left: 1px solid rgba(255, 255, 255, .08);
        display: flex;
        flex-direction: column;
        padding: 8px 0;
    }

    .mega-tab {
        background: none;
        border: none;
        color: #fff;
        text-align: right;
        padding: 11px 14px;
        font-size: .9rem;
        cursor: pointer;
        transition: background .2s, color .2s;
        width: 100%;
    }

    .mega-tab:hover {
        background: rgba(134, 204, 238, .15);
    }

    .mega-tab.active {
        background: rgba(134, 204, 238, .22);
        color: #86ccee;
        border-right: 3px solid #86ccee;
    }

    .mega-content {
        flex: 1;
        padding: 14px 16px;
    }

    .mega-panel {
        display: none;
        flex-direction: column;
        gap: 4px;
    }

    .mega-panel.active {
        display: flex;
    }

    .mega-panel a {
        color: #fff;
        font-size: .88rem;
        text-decoration: none !important;
        padding: 7px 8px;
        border-radius: 4px;
        transition: background .15s, color .15s;
        text-align: right;
    }

    .mega-panel a:hover {
        background: rgba(134, 204, 238, .15);
        color: #86ccee;
    }

    /* موبایل منو در دسکتاپ کاملاً خاموش */
    .mega-mobile-menu {
        display: none !important;
    }
}

@media (max-width: 991.98px) {

    .ttb-marquee-desktop {
        display: none !important;
    }

    .ttb-marquee-mobile {
        display: block;
    }

    #mainNavMenu {
        background: #0c2f44;
        border-top: 1px solid rgba(255, 255, 255, .08);
        max-height: 75vh;
        overflow-y: auto;
        padding: 4px 0;
    }

    .main-nav {
        width: 100%;
    }
	
	.navbar-nav {
        padding-right: 0px;
    }

    .main-nav .nav-link {
        padding: 11px 16px;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .06);
        font-size: .92rem;
        white-space: normal;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mega-toggle .mob-arrow {
        font-size: .75rem;
        transition: transform .25s;
        flex-shrink: 0;
    }

    .mega-toggle[aria-expanded="true"] .mob-arrow {
        transform: rotate(180deg);
    }

    .mega-menu {
        display: none !important;
    }

    .mega-toggle::after {
        display: none !important;
    }

    .mega-mobile-menu {
        background: rgba(0, 0, 0, .18);
        border-top: 1px solid rgba(255, 255, 255, .05);
        border-right: 3px solid rgba(134, 204, 238, .3);
        margin: 0;
    }

    .mega-parent>.mega-mobile-menu {
        display: none;
    }

    .mega-parent.mob-mega-open>.mega-mobile-menu {
        display: block;
    }

    .mob-group-toggle {
        width: 100%;
        background: none;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, .06);
        color: #ffffff;
        text-align: right;
        padding: 10px 28px;
        font-size: .88rem;
        font-weight: 500;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        direction: rtl;
        transition: background .15s;
    }

    .mob-group-toggle:hover {
        background: rgba(134, 204, 238, .1);
    }

    .mob-chevron {
        font-size: .7rem;
        transition: transform .25s;
        flex-shrink: 0;
        margin-right: auto;
        margin-left: 0;
    }

    .mob-group-toggle[aria-expanded="true"] {
        background: rgba(134, 204, 238, .12);
    }

    .mob-group-toggle[aria-expanded="true"] .mob-chevron {
        transform: rotate(180deg);
    }

    .mob-group-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: none;
        background: rgba(0, 0, 0, .1);
    }

    .mob-group-list.mob-open {
        display: block;
    }

    .mob-group-list li a {
        display: block;
        color: #fff;
        text-decoration: none !important;
        padding: 9px 40px;
        font-size: .85rem;
        border-bottom: 1px solid rgba(255, 255, 255, .04);
        transition: background .15s, color .15s;
        direction: rtl;
        text-align: right;
    }

    .mob-group-list li a:hover {
        background: rgba(134, 204, 238, .1);
        color: #86ccee;
    }
}

.navbar-toggler.custom-toggler {
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: transparent !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: none !important;
    outline: none !important;
}

.navbar-toggler.custom-toggler .navbar-toggler-icon {
    display: none;
}

.toggler-icon {
    width: 24px;
    height: 18px;
    position: relative;
    display: block;
}

.toggler-icon span,
.toggler-icon span::before,
.toggler-icon span::after {
    position: absolute;
    right: 0;
    width: 24px;
    height: 2.4px;
    background: #ffffff;
    border-radius: 4px;
    transition: all .35s cubic-bezier(.4, 0, .2, 1);
    content: "";
}

.toggler-icon span {
    top: 50%;
    transform: translateY(-50%);
}

.toggler-icon span::before {
    top: -7px;
}

.toggler-icon span::after {
    top: 7px;
}

.navbar-toggler.custom-toggler:hover span,
.navbar-toggler.custom-toggler:hover span::before,
.navbar-toggler.custom-toggler:hover span::after {
    background: #86ccee;
}

.navbar-toggler.custom-toggler:not(.collapsed) span {
    background: transparent;
}

.navbar-toggler.custom-toggler:not(.collapsed) span::before {
    transform: rotate(45deg);
    top: 0;
    background: #86ccee;
}

.navbar-toggler.custom-toggler:not(.collapsed) span::after {
    transform: rotate(-45deg);
    top: 0;
    background: #86ccee;
}

@media (max-width: 991.98px) {

    .navbar-toggler.custom-toggler {
        margin-right: 4px;
    }

}

.ws1-section {
    padding: 1.5rem 0;
}

.ws1-city-card {
    /* background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    backdrop-filter: blur(8px); */
    padding: 1.5rem;
    height: 100%;
    min-height: 260px;
}

.ws1-card-inner {
    display: flex;
    align-items: stretch;
    height: 100%;
}

.ws1-text-side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    height: 100%;
}

.ws1-icon-side {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ws1-city-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.ws1-city-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--clr-white);
}

.ws1-city-pin {
    color: var(--clr-gold);
    font-size: 1.2rem;
}

.ws1-city-arrow {
    color: var(--clr-light-blue);
    font-size: 1rem;
    margin-right: auto;
}

.ws1-weather-status {
    font-size: 2rem;
    font-weight: 700;
    color: var(--clr-white);
    text-align: right;
}

.ws1-weather-temp {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--clr-white);
    text-align: right;
    line-height: 1;
}

.ws1-temp-unit {
    font-size: 2rem;
    font-weight: 400;
}

.ws1-weather-date {
    font-size: 0.9rem;
    color: rgba(250, 250, 250, 0.8);
    text-align: right;
    line-height: 1.8;
}

.ws1-icon-side img {
    width: 160px;
    max-width: 100%;
    /*filter: brightness(0) invert(1);*/
    drop-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.ws1-update-time {
    font-size: 0.8rem;
    color: var(--clr-light-blue);
}

.ws1-stats-card {
    background: #1A2D39;
    border: 1px solid #182934;
    border-radius: 16px;
    padding: 16px 18px;
    height: 100%;
	overflow: hidden;
}

.ws1-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 14px;
    direction: rtl;
}

.ws1-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
	justify-content: center;
    gap: 6px;
    padding: 10px 6px;
    border-radius: 10px;
    transition: background 0.2s;
	text-align: center;
    min-width: 0;
}

.ws1-stat-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.ws1-stat-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.ws1-stat-value {
    font-size: clamp(0.9rem, 1vw, 1.05rem);
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: baseline;
    justify-content: center;
	gap: 3px;
	flex-wrap: wrap;
}

.ws1-stat-value small {
    font-size: clamp(0.65rem, 0.8vw, 0.75rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
}

.ws1-stat-label {
    font-size: clamp(12px, 0.9vw, 14px);
    font-weight: 500;
    color: var(--clr-light-blue);
    text-align: center;
}

.ws1-meteo-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ws1-meteo-header {
    background: rgba(0, 166, 244, 0.15);
    border-bottom: 1px solid var(--card-border);
    color: var(--clr-white);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ws1-meteo-header i {
    color: var(--clr-white);
    font-size: 1.1rem;
}

.ws1-meteo-body {
    padding: 12px;
    flex: 1;
    min-height: 200px;
}

#meteogramChart {
    width: 100% !important;
    height: 200px !important;
}

.ws1-alt-layout {
    display: none;
}

.ws1-alt-layout.active {
    display: block;
}

.ws1-normal-layout.hidden {
    display: none;
}

.ws1-alt-summary-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ws1-alt-temp-block {
    text-align: right;
    margin-bottom: 20px;
}

.ws1-alt-city-label {
    font-size: 0.95rem;
    color: var(--clr-light-blue);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.ws1-alt-temp-val {
    font-size: 3.2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.ws1-alt-temp-unit {
    font-size: 1.6rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

.ws1-alt-cond-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 6px;
}

.ws1-alt-metrics-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: auto;
}

.ws1-alt-metric {
    text-align: center;
    padding: 12px 6px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.ws1-alt-metric-icon {
    font-size: 1.3rem;
    color: var(--clr-gold);
    margin-bottom: 6px;
}

.ws1-alt-metric-val {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.ws1-alt-metric-lbl {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 3px;
}

.ws1-alt-alert-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ws1-alt-alert-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.ws1-alt-alert-title i {
    color: #fdd835;
    font-size: 1.2rem;
}

.ws1-alt-alert-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.ws1-alt-alert-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
    transition: background 0.2s;
}

.ws1-alt-alert-row:hover {
    background: rgba(255, 255, 255, 0.08);
}

.ws1-alt-alert-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.ws1-alt-alert-dot.red {
    background: #ef5350;
    box-shadow: 0 0 6px rgba(239, 83, 80, 0.5);
}

.ws1-alt-alert-dot.orange {
    background: #ff9800;
    box-shadow: 0 0 6px rgba(255, 152, 0, 0.5);
}

.ws1-alt-alert-dot.yellow {
    background: #fdd835;
    box-shadow: 0 0 6px rgba(253, 216, 53, 0.5);
}

.ws1-alt-alert-text {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    flex: 1;
}

.ws1-alt-alert-more {
    display: block;
    text-align: center;
    padding: 12px;
    color: var(--clr-light-blue);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px dashed rgba(134, 204, 238, 0.3);
    border-radius: 8px;
    margin-top: 12px;
    transition: all 0.2s;
}

.ws1-alt-alert-more:hover {
    background: rgba(134, 204, 238, 0.08);
    border-color: rgba(134, 204, 238, 0.6);
}

@media (max-width:991px) {

    .ws1-card-inner {
        flex-direction: column;
        gap: 10px;
    }

    .ws1-icon-side {
        width: 100%;
    }

    .ws1-weather-temp {
        font-size: 2.5rem;
    }

    .ws1-alt-temp-val {
        font-size: 2.2rem;
    }

    .ws1-alt-metrics-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ws1-stats-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
        width: 100% !important;
    }

    .ws1-stat-item {
        width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box;
    }

    .ws1-stats-grid>* {
        flex: none !important;
        max-width: none !important;
    }
}

@media (max-width: 768px) {
    .ws1-city-card {
        padding: 20px 16px 24px 16px !important;
        min-height: 250px !important;
        display: flex;
        flex-direction: column;
        position: relative;
        direction: rtl;
    }

    .ws1-card-inner {
        display: block !important;
        height: 100%;
    }

    .ws1-city-nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
    }

    .ws1-city-name {
        font-size: 1.1rem !important;
        font-weight: 700 !important;
        letter-spacing: -0.02em;
    }

    .ws1-city-pin {
        font-size: 1rem !important;
        margin-left: 4px;
    }

    .ws1-city-arrow {
        font-size: 0.9rem !important;
        opacity: 0.6;
        padding: 4px;
    }

    .ws1-text-side {
        text-align: right;
    }

    .ws1-weather-status {
        font-size: 1.5rem !important;
        font-weight: 700 !important;
        line-height: 1.2 !important;
        margin-bottom: 4px !important;
        color: #fff;
    }

    .ws1-weather-temp {
        font-size: 36px !important;
        font-weight: 900 !important;
        line-height: 0.85 !important;
        margin-top: 20px !important;
        display: flex;
        align-items: flex-start;
        flex-direction: row;
        justify-content: flex-start;
        text-align: right;
    }

    .ws1-temp-unit {
        font-size: 1.5rem !important;
        margin-right: 4px;
        margin-left: 0;
    }

    .ws1-weather-date {
        margin-top: 28px !important;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .ws1-date-text {
        font-size: 0.85rem !important;
        font-weight: 500 !important;
        color: rgba(255, 255, 255, 0.9);
    }

    .ws1-update-time {
        font-size: 0.75rem !important;
        color: #86ccee !important;
    }

    .ws1-icon-side {
        position: absolute !important;
        left: 12px;
        bottom: 12px;
        width: 130px !important;
        z-index: 1;
        pointer-events: none;
    }

    .ws1-weather-icon {
        width: 100% !important;
        height: auto !important;
        filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.25)) !important;
        /* animation: floatIcon 4s ease-in-out infinite; */
    }
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.ms2-section {
    padding: 1rem 0;
}

.ms2-wrapper {
    display: flex;
    gap: 12px;
    align-items: stretch;
    min-height: 450px;
}

.ms2-tab-panel {
    width: 90px;
    min-width: 80px;
    text-align: center;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 0;
    gap: 6px;
}

.mtp-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 4px;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s;
    border: 1px solid transparent;
}

.mtp-item:hover {
    background: rgba(134, 204, 238, 0.1);
}

.mtp-icon-img {
    width: 36px;
    height: 36px;
    transition: filter 0.2s;
}

.mtp-item.active .mtp-icon-img,
.mtp-item:hover .mtp-icon-img {
    filter: brightness(0) saturate(100%) invert(72%) sepia(60%) saturate(800%) hue-rotate(5deg) brightness(105%);
}

.mtp-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--clr-white);
    text-align: center;
    line-height: 1.3;
}

.ms2-map-view {
    display: flex;
    gap: 12px;
    flex: 1;
}

.ms2-map-view.hidden {
    display: none;
}

.ms2-map-wrapper {
    flex: 3;
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    min-height: 520px;
}

#iranMap {
    width: 100%;
    height: 100%;
    min-height: 520px;
}

.ms2-map-controls {
    position: absolute;
    bottom: 24px;
    left: 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 1000;
}

.ms2-map-ctrl-btn {
    width: 36px;
    height: 36px;
    background: rgba(5, 47, 74, 0.85);
    border: 1px solid rgba(134, 204, 238, 0.3);
    color: var(--clr-white);
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.ms2-map-ctrl-btn:hover {
    background: rgba(239, 176, 60, 0.4);
}


.ms2-weekly-panel {
    flex: 2;
    width: auto;
    min-width: 260px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.ms2-weekly-panel.hidden {
    display: none;
}

.mwp-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.mwp-header-icon {
    color: var(--clr-light-blue);
    font-size: 1.1rem;
}

.mwp-header-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-white);
}

.mwp-days-wrapper {
    position: relative;
    margin-bottom: 14px;
}

.mwp-day-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--clr-white);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: background 0.2s;
    padding: 0;
}

.mwp-day-arrow:hover {
    background: rgba(239, 176, 60, 0.3);
}

.mwp-day-arrow.arrow-r {
    right: -4px;
}

.mwp-day-arrow.arrow-l {
    left: -4px;
}

.mwp-days-slider {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-behavior: smooth;
    cursor: grab;
    padding: 4px 0;
	justify-content: center;
	user-select: none;
    -webkit-user-select: none;
}
.mwp-days-slider.grabbing {
    cursor: grabbing;
}

.mwp-days-slider::-webkit-scrollbar {
    display: none;
}

.mwp-day-card {
    flex: 0 0 auto;
    width: 72px;
    background: rgba(134, 204, 238, 0.08);
    border: 1px solid rgba(134, 204, 238, 0.15);
    border-radius: 12px;
    padding: 10px 4px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--clr-white);
}

.mwp-day-card:hover {
    background: rgba(134, 204, 238, 0.15);
}

.mwp-day-card.active {
    background: rgba(239, 176, 60, 0.2);
    border-color: var(--clr-gold);
}

.mwp-day-name {
    font-size: 0.7rem;
    color: var(--clr-light-blue);
    margin-bottom: 6px;
    font-weight: 600;
}

.mwp-day-icon {
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.mwp-day-temps {
    font-size: 0.72rem;
    line-height: 1.5;
}

.mwp-day-hi {
    font-weight: 700;
    color: var(--clr-gold);
}

.mwp-day-lo {
    color: rgba(255, 255, 255, 0.6);
}

.mwp-detail-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mwp-detail-top {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mwp-detail-icon {
    font-size: 2.5rem;
}

.mwp-detail-day-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-white);
}

.mwp-detail-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

.mwp-detail-temps {
    display: flex;
    gap: 20px;
    align-items: center;
}

.mwp-detail-temp-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mwp-detail-temp-item i {
    font-size: 1.2rem;
}

.mwp-detail-temp-item .mdi-hi {
    color: #ef5350;
}

.mwp-detail-temp-item .mdi-lo {
    color: #42a5f5;
}

.mwp-detail-temp-val {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--clr-white);
}

.mwp-detail-temp-lbl {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
}

/*.mwp-mountain-deco {
    height: 120px;
    margin: 0 -16px -16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 60'%3E%3Cpolygon points='0,60 50,15 110,40 170,8 230,35 300,20 300,60' fill='%23EFB03C' opacity='0.85'/%3E%3Cpolygon points='0,60 35,35 80,50 140,22 200,45 300,30 300,60' fill='%23c8861e' opacity='0.5'/%3E%3C/svg%3E") no-repeat bottom center;
    background-size: cover;
    border-radius: 0 0 16px 16px;
}*/

.mwp-mountain-deco {
    display: none;
}

.ms2-content-area {
    flex: 1;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    display: none;
    flex-direction: column;
}

.ms2-content-area.active {
    display: flex;
}

.tca-page {
    display: none;
    flex-direction: column;
    height: 100%;
}

.tca-page.active {
    display: flex;
}


.tca-weather-subtabs {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow:
        inset 0 3px 8px rgba(0, 0, 0, 0.15),
        inset 0 1px 3px rgba(0, 0, 0, 0.1),
        inset 0 -2px 0 rgba(255, 255, 255, 1),
        0 1px 0 rgba(255, 255, 255, 0.6);

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.tca-wsub-btn {
    padding: 6px 20px;
    border-radius: 20px;
    border: 1px solid #666;
    background: transparent;
    color: #666;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.25s;
    white-space: nowrap;
    font-family: inherit;
}

.tca-wsub-btn:hover {
    background: #ccc;
    color: #333;
}

.tca-wsub-btn.active {
    background: linear-gradient(135deg, #0077b6, #00b4d8);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 2px 10px rgba(0, 119, 182, 0.4);
}

.tca-weather-map-wrap {
    flex: 1;
    position: relative;
    min-height: 400px;
}

.tca-weather-map-wrap .leaflet-container {
    width: 100%;
    height: 100%;
    border-radius: 0;
}

.tca-weather-timeline {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tca-wt-play {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #0077b6, #00b4d8);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.tca-wt-play:hover {
    transform: scale(1.1);
}

.tca-wt-slider-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tca-wt-slider {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.15);
    outline: none;
    cursor: pointer;
}

.tca-wt-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #00b4d8;
    cursor: pointer;
    box-shadow: 0 0 6px rgba(0, 180, 216, 0.5);
}

.tca-wt-labels {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
}

.tca-wt-time-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    flex-shrink: 0;
}

.tca-weather-legend {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 10px 14px;
    z-index: 1000;
    color: #fff;
    font-size: 11px;
}

.tca-legend-title {
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 12px;
}

.tca-legend-bar {
    width: 160px;
    height: 10px;
    border-radius: 5px;
    margin-bottom: 4px;
}

.tca-legend-bar.temp {
    background: linear-gradient(90deg, #6a1b9a, #1565c0, #00897b, #f9a825, #e65100, #b71c1c);
}

.tca-legend-bar.humidity {
    background: linear-gradient(90deg, #f5e6cc, #a3d9a5, #2196f3, #0d47a1);
}

.tca-legend-bar.wind {
    background: linear-gradient(90deg, #e8f5e9, #66bb6a, #fdd835, #ef6c00, #c62828);
}

.tca-legend-bar.pressure {
    background: linear-gradient(90deg, #e3f2fd, #64b5f6, #1565c0, #0d47a1);
}

.tca-legend-bar.rain {
    background: linear-gradient(90deg, #fff9c4, #81d4fa, #1565c0, #0d47a1);
}

.tca-legend-labels {
    display: flex;
    justify-content: space-between;
}


.tca-alerts-inner {
    padding: 16px;
    overflow-y: auto;
    flex: 1;
}

.tca-alerts-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.tca-alerts-header-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.tca-alerts-header-title i {
    color: #fdd835;
}

.tca-alerts-count {
    background: rgba(253, 216, 53, 0.2);
    color: #fdd835;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.tca-alert-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.25s;
    cursor: pointer;
}

.tca-alert-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

.tca-alert-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}

.tca-alert-dot.red {
    background: #ef5350;
    box-shadow: 0 0 8px rgba(239, 83, 80, 0.5);
}

.tca-alert-dot.orange {
    background: #ff9800;
    box-shadow: 0 0 8px rgba(255, 152, 0, 0.5);
}

.tca-alert-dot.yellow {
    background: #fdd835;
    box-shadow: 0 0 8px rgba(253, 216, 53, 0.5);
}

.tca-alert-body {
    flex: 1;
}

.tca-alert-title {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.6;
}

.tca-alert-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
}

.tca-alert-meta i {
    margin-left: 3px;
}

.tca-alerts-all {
    display: block;
    text-align: center;
    padding: 14px;
    margin-top: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 10px;
    border: 1px dashed rgba(0, 180, 216, 0.3);
    transition: all 0.25s;
}

.tca-alerts-all:hover {
    background: #fff;
    color: #052F4A;
    border-color: rgba(0, 180, 216, 0.6);
}


.tca-news-inner {
    padding: 16px;
    overflow-y: auto;
    flex: 1;
}

.tca-news-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.tca-news-header-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.tca-news-header-title i {
    color: #00b4d8;
}

.tca-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
}

.tca-news-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.25s;
    cursor: pointer;
}

.tca-news-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.tca-news-card-img {
    width: 100%;
    height: 130px;
    object-fit: cover;
}

.tca-news-card-body {
    padding: 12px 14px;
}

.tca-news-card-title {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    line-height: 1.7;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.tca-news-card-title:hover{
	text-decoration: none;
}

.tca-news-card-date {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    gap: 4px;
}

.tca-news-all {
    display: block;
    text-align: center;
    padding: 14px;
    margin-top: 16px;
    color: #00b4d8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 10px;
    border: 1px dashed rgba(0, 180, 216, 0.3);
    transition: all 0.25s;
}

.tca-news-all:hover {
    background: rgba(0, 180, 216, 0.08);
    border-color: rgba(0, 180, 216, 0.6);
}


.tca-explore-inner {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    overflow-y: auto;
    flex: 1;
}

.tca-explore-search {
    position: relative;
}

.tca-explore-search input {
    width: 100%;
    padding: 12px 20px 12px 44px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: all 0.25s;
}

.tca-explore-search input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.tca-explore-search input:focus {
    border-color: #00b4d8;
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.15);
}

.tca-explore-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 16px;
}

.tca-explore-section-title {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tca-explore-section-title i {
    color: #00b4d8;
}

.tca-explore-btn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
}

.tca-explore-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    text-decoration: none;
    text-align: center;
    transition: all 0.25s;
    cursor: pointer;
}

.tca-explore-btn:hover {
    background: rgba(0, 180, 216, 0.12);
    border-color: rgba(0, 180, 216, 0.3);
    transform: translateY(-2px);
}

.tca-explore-btn-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.tca-explore-btn-icon.blue {
    background: rgba(0, 119, 182, 0.2);
    color: #00b4d8;
}

.tca-explore-btn-icon.green {
    background: rgba(0, 137, 123, 0.2);
    color: #26a69a;
}

.tca-explore-btn-icon.orange {
    background: rgba(230, 81, 0, 0.2);
    color: #ff9800;
}

.tca-explore-btn-icon.purple {
    background: rgba(106, 27, 154, 0.2);
    color: #ba68c8;
}

.tca-explore-btn-icon.red {
    background: rgba(198, 40, 40, 0.2);
    color: #ef5350;
}

.tca-explore-btn-icon.teal {
    background: rgba(0, 150, 136, 0.2);
    color: #4db6ac;
}

.tca-explore-btn-label {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
}

.tca-explore-info {
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.2), rgba(0, 180, 216, 0.15));
    border: 1px solid rgba(0, 180, 216, 0.2);
    border-radius: 10px;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tca-explore-info i {
    color: #00b4d8;
    font-size: 18px;
    flex-shrink: 0;
}


.wm-marker {
    background: rgba(0, 180, 216, 0.9);
    border: 2px solid #fff;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 180, 216, 0.5);
    position: relative;
}

.wm-marker::after {
    content: '';
    position: absolute;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid rgba(0, 180, 216, 0.4);
    animation: wmPulse 2s ease-out infinite;
}

@keyframes wmPulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.wm-popup .leaflet-popup-content-wrapper {
    background: rgba(10, 25, 47, 0.9);
    backdrop-filter: blur(12px);
    color: #fff;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.wm-popup .leaflet-popup-tip {
    background: rgba(10, 25, 47, 0.9);
}

.wm-popup-content {
    text-align: center;
    padding: 4px;
}

.wm-popup-city {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.wm-popup-temp {
    font-size: 22px;
    font-weight: 700;
    color: #00b4d8;
}

.wm-popup-desc {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}


.ss3-wrapper {
    width: 100%;
    direction: rtl;
    margin-bottom: 2rem;
}

.ss3-marquee {
    display: flex;
    align-items: center;
    backdrop-filter: blur(16px);
    color: #f5c518;
    padding: 0.5rem 0.75rem;
    gap: 0.5rem;
    min-height: 44px;
    border-radius: 10px;
}

.ss3-marquee-track {
    flex: 1;
    overflow: hidden;
}

.ss3-marquee-inner {
    display: flex;
    gap: 4rem;
    white-space: nowrap;
    animation: ss3Marquee 35s linear infinite;
    font-size: 0.95rem;
    font-weight: 600;
}

.ss3-marquee-inner span {
    flex-shrink: 0;
}

@keyframes ss3Marquee {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.ss3-slider-wrap {
    background-color: #FAFAFA;
    position: relative;
    width: 100%;
    overflow: hidden;
    user-select: none;
    border-radius: 10px;
}

.ss3-slider-viewport {
    position: relative;
    width: 100%;
    height: 380px;
}

.ss3-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.ss3-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.ss3-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.ss3-slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.45);
    border: none;
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ss3-slide-btn:hover {
    background: rgba(0, 0, 0, 0.75);
}

.ss3-slide-prev {
    right: 14px;
}

.ss3-slide-next {
    left: 14px;
}

.ss3-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.ss3-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    border: none;
}

.ss3-dot.active {
    background: #fff;
    transform: scale(1.3);
}

@media (max-width:768px) {
    .ss3-slider-viewport {
        height: 260px;
    }
}

@media (max-width:480px) {
    .ss3-slider-viewport {
        height: 200px;
    }
}


.ls4-wrapper {
    direction: rtl;
    background: #fff;
    position: relative;
}

.ls4-top-bar {
    background: #ffffff;
    padding: 2rem 0 1.5rem;
}

.ls4-items-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 1440px;
    margin: 0 auto;
}

.ls4-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    text-decoration: none;
    color: #1a2e4a;
    border-radius: 12px;
    transition: all 0.3s;
    position: relative;
    flex: 1;
}

.ls4-item:hover {
    background: #f8fbff;
    border-right: 3px solid #1e5aa0;
    padding-right: calc(-3px);
    color: #1565c0;
    transform: translateX(-3px);
    box-shadow: 4px 0 12px rgba(30, 90, 160, 0.08);
}

.ls4-item:hover .ls4-icon-circle {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.5);
}

.ls4-icon-circle {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #f5a623, #e8920a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    transition: all 0.3s;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15),
        2px 2px 5px rgba(61, 38, 1, 0.3);
}

.ls4-item .bi::before,
[class*=" bi-"]::before,
[class^="bi-"]::before {
    line-height: 0;
    vertical-align: middle;
}

.ls4-item-label {
    font-size: 1rem;
    font-weight: 700;
    color: #1a2e4a;
    transition: color 0.3s;
}

.ls4-item:hover .ls4-item-label {
    color: #1565c0;
}

.ls4-divider {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, #cdd8e8, transparent);
    flex-shrink: 0;
}

.ls4-bottom-bar {
    background: #1a2e4a;
    display: flex;
    align-items: stretch;
    position: relative;
    min-height: 80px;
}

.ls4-link-box {
    flex: 1;
    padding: 1.25rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}


.ls4-links-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.ls4-link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: #a8c4e0;
    text-decoration: none;
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: all 0.25s;
    border: 1px solid transparent;
}

.ls4-link-item:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}
.ls4-link-container {
	overflow: hidden !important;
	border-radius: 1rem !important;
	box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
	transition: all .35s;
    -webkit-transition: all .35s;
    -moz-transition: all .35s;
	background-color: white;
}
.ls4-link-container:hover {
    transform: translateY(-10px);
    filter: brightness(0.9);
}
.ls4-link-item img {
    width: 200px;
    height: 85px;
    object-fit: scale-down;
}

.ls4-side-panel {
    position: fixed;
    right: 0;
    top: 80%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.ls4-side-toggle {
    width: 28px;
    height: 56px;
    background: #f5a623;
    border: none;
    border-radius: 8px 0 0 8px;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.2);
}

.ls4-side-toggle:hover {
    background: #e8920a;
}

.ls4-side-btn {
    width: 48px;
    height: 48px;
    background: #fff;
    border: none;
    border-radius: 50%;
    color: #1a2e4a;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.18);
    transition: all 0.3s;
    margin-left: 8px;
    opacity: 0;
    transform: translateX(20px);
    pointer-events: none;
}

.ls4-side-panel.open .ls4-side-btn {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
    margin-right: 10px;
}

.ls4-side-btn:hover {
    background: #1565c0;
    color: #fff;
    transform: scale(1.1);
}

.ls4-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 20, 40, 0.55);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.ls4-modal-overlay.active {
    display: flex;
}

.ls4-modal {
    background: #fff;
    border-radius: 16px;
    width: 420px;
    max-width: 95vw;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    direction: rtl;
    animation: ls4ModalIn 0.3s ease;
}

@keyframes ls4ModalIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.ls4-modal-header {
    background: linear-gradient(135deg, #1565c0, #1a2e4a);
    color: #fff;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1rem;
}

.ls4-modal-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.ls4-modal-close:hover {
    opacity: 1;
}

.ls4-chat-messages {
    height: 320px;
    overflow-y: auto;
    padding: 1rem;
    background: #f5f8fc;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ls4-chat-msg {
    display: flex;
    gap: 0.6rem;
    align-items: flex-end;
}

.ls4-msg-agent {
    flex-direction: row;
}

.ls4-msg-user {
    flex-direction: row-reverse;
}

.ls4-msg-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #1565c0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.ls4-msg-user .ls4-msg-avatar {
    background: #f5a623;
}

.ls4-msg-bubble {
    max-width: 75%;
    background: #fff;
    border-radius: 12px 12px 12px 0;
    padding: 0.6rem 0.9rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.ls4-msg-user .ls4-msg-bubble {
    background: #1565c0;
    color: #fff;
    border-radius: 12px 12px 0 12px;
}

.ls4-msg-name {
    font-size: 0.72rem;
    color: #888;
    display: block;
    margin-bottom: 0.2rem;
}

.ls4-msg-user .ls4-msg-name {
    color: rgba(255, 255, 255, 0.7);
}

.ls4-msg-bubble p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.6;
}

.ls4-msg-time {
    font-size: 0.68rem;
    color: #aaa;
    display: block;
    text-align: left;
    margin-top: 0.2rem;
}

.ls4-msg-user .ls4-msg-time {
    color: rgba(255, 255, 255, 0.6);
}

.ls4-chat-input {
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #fff;
    border-top: 1px solid #e8eef5;
}

.ls4-chat-input input {
    flex: 1;
    border: 1px solid #d0dce8;
    border-radius: 24px;
    padding: 0.5rem 1rem;
    font-family: 'Peyda', sans-serif;
    font-size: 0.88rem;
    outline: none;
    direction: rtl;
    transition: border-color 0.2s;
}

.ls4-chat-input input:focus {
    border-color: #1565c0;
}

.ls4-chat-input button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1565c0;
    border: none;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.ls4-chat-input button:hover {
    background: #0d47a1;
}

.ls4-access-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.ls4-access-group h6 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a2e4a;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.ls4-access-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.ls4-access-btns button {
    padding: 0.4rem 0.9rem;
    border: 1.5px solid #d0dce8;
    border-radius: 8px;
    background: #f5f8fc;
    color: #1a2e4a;
    font-family: 'Peyda', sans-serif;
    font-size: 0.82rem;
    cursor: pointer;
    transition: all 0.2s;
}

.ls4-access-btns button:hover,
.ls4-access-btns button.active {
    background: #1565c0;
    color: #fff;
    border-color: #1565c0;
}

body.ls4-high-contrast {
    filter: contrast(1.6);
}

body.ls4-dark-mode {
    filter: invert(1) hue-rotate(180deg);
}

body.ls4-grayscale {
    filter: grayscale(1);
}

body.ls4-large-cursor,
body.ls4-large-cursor * {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath d='M8 2l16 12-7 1 4 9-3 1-4-9-6 5z' fill='%23000'/%3E%3C/svg%3E") 0 0, auto !important;
}

body.ls4-underline-links a {
    text-decoration: underline !important;
}


.site-footer {
    background: linear-gradient(135deg, #0a1628 0%, #0d1f3c 50%, #0a1628 100%);
    color: #c8d8e8;
    direction: rtl;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3b82f6, #60a5fa, #3b82f6, transparent);
}

.sf-brand-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #f59e0b;
    margin-bottom: 0.75rem;
}

.sf-brand-desc {
    font-size: 15px;
    line-height: 1.9;
    color: #f5f5f5;
}

.sf-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #93c5fd;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
}

.sf-social-link:hover {
    background: rgba(59, 130, 246, 0.35);
    border-color: #3b82f6;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.3);
}

.sf-col-title {
    font-size: 16px;
    font-weight: 700;
    color: #f59e0b;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(245, 158, 11, 0.25);
}

.sf-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sf-nav li {
    margin-bottom: 0.55rem;
}

.sf-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.25s, padding-right 0.25s;
    display: inline-block;
}

.sf-nav a:hover {
    color: #86CCEE;
    padding-right: 6px;
}

.sf-stats-row {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 0;
}

.sf-stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.sf-stat-label {
    font-size: 14px;
    font-weight: 400;
    color: #f5f5f5;
}

.sf-stat-value {
    font-size: 16px;
    font-weight: 700;
    color: #e2e8f0;
    font-variant-numeric: tabular-nums;
    direction: ltr;
    text-align: right;
}

.sf-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sf-copy,
.sf-source {
    font-size: 0.78rem;
    color: #ccc;
}

.sf-lang-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #94a3b8;
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.25s;
    font-family: 'Peyda', sans-serif;
    position: relative;
}

.sf-lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
}

.sf-lang-dropdown {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 0;
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    min-width: 150px;
    overflow: hidden;
    display: none;
    z-index: 100;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.4);
}

.sf-lang-dropdown.show {
    display: block;
    animation: sfDropUp 0.2s ease;
}

@keyframes sfDropUp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sf-lang-option {
    display: block;
    text-align: right;
    padding: 9px 14px;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.82rem;
    transition: background 0.2s;
}

.sf-lang-option:hover,
.sf-lang-option.active {
    background: rgba(59, 130, 246, 0.15);
    color: #e2e8f0;
}

.sf-lang-wrap {
    position: relative;
}


.ws2-stats-bar {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    direction: rtl;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 0;
}

.ws2-stat-item {
    padding: clamp(4px, 1vw, 8px) clamp(4px, 1.5vw, 12px);
}

.ws2-stat-label {
    font-size: clamp(0.65rem, 1.5vw, 0.78rem);
    color: #6b7280;
    margin-bottom: 4px;
    white-space: nowrap;
}

.ws2-stat-label i {
    margin-left: 4px;
    color: #9ca3af;
}

.ws2-stat-value {
    font-size: clamp(0.78rem, 1.8vw, 1rem);
    font-weight: 700;
    color: #111827;
    white-space: nowrap;
}

.ws2-stat-divider {
    width: 1px;
    height: 40px;
    background: #e5e7eb;
    justify-self: center;
}


@media (max-width: 575px) {
    .ws2-stats-bar {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 8px;
        padding: 12px !important;
    }


    .ws2-stat-divider {
        display: none;
    }


    .ws2-stat-item:nth-child(8),
    .ws2-stat-item:nth-child(10) {
        grid-column: span 1;
    }


    .ws2-stats-bar {
        grid-template-columns: repeat(3, 1fr);
    }
}


@media (min-width: 576px) and (max-width: 767px) {
    .ws2-stats-bar {
        grid-template-columns: repeat(5, 1fr);
    }

    .ws2-stat-label {
        font-size: 0.7rem;
    }

    .ws2-stat-value {
        font-size: 0.82rem;
    }
}


.ws2-forecast-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    direction: rtl;
}


.ws2-tabs-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

.ws2-tabs-wrapper::-webkit-scrollbar {
    height: 3px;
}

.ws2-tabs-wrapper::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 2px;
}

.ws2-tabs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 6px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: max-content;
    min-width: 100%;
    justify-content: center;
}


@media (max-width: 575px) {
    .ws2-tabs {
        justify-content: flex-start;
        padding-bottom: 2px;
    }
}

.ws2-tab {
    text-decoration: none;
    color: #6b7280;
    font-size: clamp(0.72rem, 2vw, 0.82rem);
    padding: 5px clamp(8px, 2vw, 14px);
    border-radius: 20px;
    background: #f3f4f6;
    transition: all 0.2s;
    white-space: nowrap;
    display: inline-block;
}

.ws2-tab:hover {
    background: #e5e7eb;
    color: #374151;
}

.ws2-tab.active {
    background: #f59e0b;
    color: #ffffff;
    font-weight: 700;
}


.ws2-hourly-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}

.ws2-hourly-scroll::-webkit-scrollbar {
    height: 4px;
}

.ws2-hourly-scroll::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 2px;
}


.ws2-hour-item {
    min-width: clamp(56px, 12vw, 72px);
    padding: clamp(6px, 1.5vw, 10px) clamp(4px, 1vw, 8px);
    scroll-snap-align: start;
}

.ws2-hour-time {
    font-size: clamp(0.68rem, 1.8vw, 0.78rem);
    color: #6b7280;
    margin-bottom: 6px;
    font-weight: 500;
}

.ws2-hour-icon {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    display: block;
    margin: 4px auto;
    color: #f59e0b;
}

.ws2-icon-gray {
    color: #9ca3af !important;
}

.ws2-icon-blue {
    color: #3b82f6 !important;
}

.ws2-icon-dark {
    color: #4b5563 !important;
}

.ws2-hour-temp {
    font-size: clamp(0.85rem, 2.5vw, 1rem);
    font-weight: 700;
    color: #111827;
    margin-top: 4px;
}

.ws2-hour-rain {
    font-size: clamp(0.62rem, 1.5vw, 0.72rem);
    color: #6b7280;
    margin-top: 3px;
}

.ws2-hour-rain i {
    font-size: 0.65rem;
    color: #93c5fd;
}

.bi::before,
[class*=" bi-"]::before,
[class^=bi-]::before {
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: 400 !important;
    font-variant: normal;
    line-height: 0 !important;
    vertical-align: middle !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 1200px) {
    .ms2-weekly-panel {
        width: 260px;
        min-width: 240px;
    }
}

@media (max-width: 992px) {
    .ms2-wrapper {
        flex-direction: column;
        min-height: auto;
    }

    .ms2-tab-panel {
        width: 100%;
        flex-direction: row;
        justify-content: space-around;
        padding: 8px;
        border-radius: 16px;
    }

    .mtp-item {
        flex: 1;
        padding: 6px 4px;
    }

    .mtp-icon-img {
        width: 28px;
        height: 28px;
    }

    .mtp-label {
        font-size: 9px;
    }

    .ms2-map-view {
        flex-direction: column;
    }

    .ms2-map-wrapper {
        min-height: 350px;
    }

    .ms2-weekly-panel {
        width: 100%;
        min-width: auto;
    }

    .ms2-content-area {
        min-height: 450px;
    }

    .ls4-items-row {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0 1rem;
    }

    .ls4-divider {
        width: 80px;
        height: 1px;
    }

    .ls4-item {
        padding: 1rem 2rem;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        gap: 1rem;
    }

    .ls4-bottom-bar {
        flex-direction: column;
    }

    .ls4-link-box {
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .ws1-stats-grid {
        grid-template-columns: 1fr;
    }

    .tca-news-grid {
        grid-template-columns: 1fr;
    }

    .tca-explore-btn-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tca-weather-subtabs {
        gap: 3px;
        padding: 8px 10px;
    }

    .tca-wsub-btn {
        padding: 5px 10px;
        font-size: 11px;
    }

    .ws1-alt-metrics-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .ws1-weather-temp {
        font-size: 2.5rem;
    }

    .ws1-weather-status {
        font-size: 1.5rem;
    }

    .ws1-alt-temp-val {
        font-size: 2rem;
    }

    .mwp-day-card {
        width: 60px;
    }

    .mwp-detail-temps {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
}

.mapBg {
    background: url(images/map/mapbg.png) 0 0 / cover no-repeat;
    background-color: var(--glass-bg);
}
.tca-alerts-wrapper{
	overflow: auto;
	max-height:400px;
}
.leaflet-container { font-size: 0.75rem !important; }
.leaflet-popup-content { text-align: right; margin: 0 !important; padding: 10px; min-width: 280px !important; color: #6b7074 !important; }
.leaflet-popup-content ui.list-group { padding-inline-start: 0px !important; }
.leaflet-popup-content .list-group-item { color: rgb(107, 112, 116); }
.leaflet-popup-content .city-name { font-weight: 500; color: rgb(1, 85, 190) !important; }
.leaflet-popup-content .tooltip_weather-icon { width: 100px; }
.leaflet-popup-content .temperature-text { text-align: center; direction: ltr; }

.samane-shekayat {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
    min-height: 100vh;
    background: transparent;
}

.samane-shekayat .sk-main-card {
    width: 100%;
    max-width: 1440px;
    background: #fff;
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.samane-shekayat .sk-title {
    color: #1a405d;
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 10px;
}

.samane-shekayat .sk-breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 45px;
    font-size: 14px;
    color: #7a9cb3;
    flex-wrap: wrap;
}

.samane-shekayat .sk-breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.samane-shekayat .sk-breadcrumb a:hover {
    color: #1a405d;
}

.samane-shekayat .sk-sep {
    opacity: .6;
}

.samane-shekayat .sk-current {
    color: #4a8eb5;
    font-weight: 600;
}

.samane-shekayat .sk-grid {
    display: grid;
    grid-template-columns: 800px 1fr;
    gap: 30px;
    align-items: start;
}

.samane-shekayat .sk-track-card,
.samane-shekayat .sk-form-card {
    border: 1px solid #d4d9df;
    border-radius: 12px;
    background: #fff;
    padding: 30px 25px 22px;
    position: relative;
}

.samane-shekayat .sk-card-tag {
    position: absolute;
    top: -14px;
    right: 18px;
    padding: 4px 18px;
    background: #f7f7f7;
    border: 1px solid #cfd6dd;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #5b6673;
}

.samane-shekayat .sk-card-desc {
    font-size: 12px;
    color: #7b8794;
    margin: 10px 0 18px;
    text-align: center;
}

.samane-shekayat .sk-alert {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff7cc;
    border: 1px solid #f1dc7a;
    color: #8c6d00;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 11.5px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.samane-shekayat .sk-alert-icon {
    color: #e4b200;
    font-size: 12px;
    flex: 0 0 auto;
}

.samane-shekayat .sk-section {
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid #eef2f6;
}

.samane-shekayat .sk-section:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.samane-shekayat .sk-section-title {
    font-size: 15px;
    font-weight: 800;
    color: #1f2937;
    margin: 0 0 6px;
}

.samane-shekayat .sk-section-desc {
    font-size: 12px;
    color: #8a95a3;
    margin: 0 0 14px;
    line-height: 1.8;
}

.samane-shekayat .sk-form-grid {
    display: grid;
    gap: 14px;
    margin-bottom: 14px;
}

.samane-shekayat .sk-form-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.samane-shekayat .sk-form-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.samane-shekayat .sk-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.samane-shekayat .sk-label {
    font-size: 12px;
    color: #6b7280;
    font-weight: 600;
}

.samane-shekayat .sk-req {
    color: #ef4444;
    margin-right: 2px;
}

.samane-shekayat .sk-input {
    width: 100%;
    height: 38px;
    border: 1px solid #d0d7de;
    border-radius: 6px;
    background: #fff;
    padding: 0 12px;
    font-size: 13px;
    color: #1f2937;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
    box-sizing: border-box;
}

.samane-shekayat .sk-input:hover {
    border-color: #aeb8c3;
}

.samane-shekayat .sk-input:focus {
    border-color: #1a405d;
    box-shadow: 0 0 0 3px rgba(26, 64, 93, .08);
}

.samane-shekayat .sk-textarea {
    min-height: 78px;
    padding-top: 10px;
    resize: vertical;
}

.samane-shekayat .sk-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 10px center;
    padding-left: 34px;
}

.samane-shekayat .sk-personal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.samane-shekayat .sk-switch {
    position: relative;
    width: 34px;
    height: 18px;
    display: inline-block;
}

.samane-shekayat .sk-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.samane-shekayat .sk-switch-slider {
    position: absolute;
    inset: 0;
    background: #cfcfcf;
    border-radius: 999px;
    transition: .25s ease;
    cursor: pointer;
}

.samane-shekayat .sk-switch-slider::before {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    right: 2px;
    top: 2px;
    background: #fff;
    border-radius: 50%;
    transition: .25s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .15);
}

.samane-shekayat .sk-switch input:checked+.sk-switch-slider {
    background: #4ade80;
}

.samane-shekayat .sk-switch input:checked+.sk-switch-slider::before {
    transform: translateX(-16px);
}

.samane-shekayat .sk-personal-grid {
    display: grid;
    gap: 14px;
    transition: .3s ease;
}

.samane-shekayat .sk-personal-grid[aria-hidden="true"] {
    opacity: .55;
}

.samane-shekayat .sk-upload-box {
    display: flex;
    align-items: center;
    gap: 0;
    width: fit-content;
    border-radius: 999px;
    overflow: hidden;
    background: #e9eef5;
    border: 1px solid #d2d9e2;
}

.samane-shekayat .sk-file-btn {
    background: #9fd2ef;
    color: #1f4f66;
    padding: 9px 18px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

.samane-shekayat .sk-file-status {
    padding: 0 18px;
    font-size: 12px;
    color: #8a95a3;
    white-space: nowrap;
    min-width: 170px;
    text-align: center;
}

.samane-shekayat .sk-actions {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.samane-shekayat .sk-btn {
    border: none;
    border-radius: 6px;
    height: 42px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}

.samane-shekayat .sk-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
}

.samane-shekayat .sk-btn-track {
    width: 100%;
    background: linear-gradient(90deg, #0f3550, #5f829b);
    color: #fff;
}

.samane-shekayat .sk-btn-track-outline {
    width: 34%;
    background: #fff;
    color: #1a405d;
    border: 1px solid #94a8b8;
}

.samane-shekayat .sk-btn-submit {
    width: 66%;
    background: linear-gradient(90deg, #46d36f, #a7efbd);
    color: #0d5a31;
}


@media (max-width: 1100px) {
    .samane-shekayat .sk-grid {
        grid-template-columns: 1fr;
    }

    .samane-shekayat .sk-track-card {
        order: 2;
    }

    .samane-shekayat .sk-form-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .samane-shekayat {
        padding: 40px 14px;
    }

    .samane-shekayat .sk-main-card {
        padding: 28px 16px;
        border-radius: 18px;
    }

    .samane-shekayat .sk-title {
        font-size: 23px;
    }

    .samane-shekayat .sk-form-grid-2,
    .samane-shekayat .sk-form-grid-3,
    .samane-shekayat .sk-actions {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .samane-shekayat .sk-btn-track-outline,
    .samane-shekayat .sk-btn-submit {
        width: 100%;
    }

    .samane-shekayat .sk-upload-box {
        width: 100%;
    }

    .samane-shekayat .sk-file-status {
        min-width: 0;
        flex: 1;
    }

    .samane-shekayat .sk-personal-head {
        align-items: center;
    }
}
.samane-shekayat .sk-file-delete {
	color: #f44336;
}
.samane-shekayat .sk-field-col2_2 {
  grid-column: 2 / span 2;
}

.samane-booltan {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
    min-height: 100vh;
    background: transparent;
}

.samane-booltan .samane-booltan-container {
    width: 100%;
    max-width: 1440px;
    background: #fff;
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.samane-booltan .samane-booltan-header {
    text-align: center;
    margin-bottom: 40px;
}

.samane-booltan .samane-booltan-title {
    font-size: 28px;
    color: #0b3d66;
    font-weight: bold;
    margin-bottom: 8px;
}

.samane-booltan .samane-booltan-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #999;
}

.samane-booltan .samane-booltan-breadcrumb .active {
    color: #4a90e2;
}

.samane-booltan .samane-booltan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.samane-booltan .samane-booltan-card {
    background-color: #fff9e8;
    border: 1px solid #e8dfc4;
    border-radius: 12px;
    height: 140px;
    display: flex;
    position: relative;
    overflow: hidden;
}

.samane-booltan .card-image-side {
    width: 130px;
    height: 100%;
    background-color: #fff;
    border-left: 1px solid #e8dfc4;
}

.samane-booltan .card-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.samane-booltan .card-info-side {
    flex: 1;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
}

.samane-booltan .card-title {
    font-size: 15px;
    color: #333;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.5;
}

.samane-booltan .card-date {
    font-size: 12px;
    color: #777;
}

.samane-booltan .download-btn-fixed {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 38px;
    height: 38px;
    background-color: #fff;
    border: 1px solid #e8dfc4;
    border-bottom: none;
    border-left: none;
    border-radius: 0 8px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #666;
    transition: all 0.2s ease;
}

.samane-booltan .download-btn-fixed:hover {
    background-color: #f5f5f5;
    color: #000;
}

@media (max-width: 1024px) {
    .samane-booltan .samane-booltan-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .samane-booltan .samane-booltan-grid {
        grid-template-columns: 1fr;
    }
}

.samane-mahvareh {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
    min-height: 100vh;
    background: transparent;
}

.samane-mahvareh .samane-mahvareh-container {
    width: 100%;
    max-width: 1440px;
    background: #fff;
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.samane-mahvareh .samane-mahvareh-header {
    text-align: center;
    margin-bottom: 36px;
}

.samane-mahvareh .samane-mahvareh-title {
    font-size: 28px;
    color: #0b3d66;
    font-weight: bold;
    margin-bottom: 8px;
}

.samane-mahvareh .samane-mahvareh-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #999;
}

.samane-mahvareh .samane-mahvareh-breadcrumb .active {
    color: #4a90e2;
}

.samane-mahvareh .samane-mahvareh-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.samane-mahvareh .samane-mahvareh-tabs {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.samane-mahvareh .mahvareh-tab-btn {
    border: 1px solid #d7e2ef;
    background: #f5f9fd;
    color: #0b3d66;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}

.samane-mahvareh .mahvareh-tab-btn:hover {
    background: #eaf3fb;
    border-color: #b8d0e8;
}

.samane-mahvareh .mahvareh-tab-btn.active {
    background: #0b3d66;
    color: #fff;
    border-color: #0b3d66;
}

.samane-mahvareh .samane-mahvareh-tools {
    display: flex;
    align-items: center;
    gap: 12px;
}

.samane-mahvareh .mahvareh-select-box {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #555;
}

.samane-mahvareh .mahvareh-select-wrap {
    position: relative;
    display: inline-block;
    min-width: 140px;
}

.samane-mahvareh .mahvareh-select {
    width: 100%;
    min-width: 140px;
    border: 1px solid #d7e2ef;
    border-radius: 12px;
    padding: 10px 12px 10px 36px;
    background: #fff;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    direction: rtl;
    text-align: right;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.samane-mahvareh .select-arrow {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #0b3d66;
    font-size: 12px;
    pointer-events: none;
}

.samane-mahvareh .samane-mahvareh-viewer-card,
.samane-mahvareh .samane-mahvareh-gallery-card {
    background: #f8fbff;
    border: 1px solid #e0ebf5;
    border-radius: 20px;
    padding: 20px;
}

.samane-mahvareh .samane-mahvareh-viewer-card {
    margin-bottom: 22px;
}

.samane-mahvareh .mahvareh-main-image-wrap {
    width: 100%;
    min-height: 480px;
    border-radius: 18px;
    overflow: hidden;
    background: #eaf1f8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.samane-mahvareh .mahvareh-main-image-wrap img {
    width: 100%;
    height: 100%;
    max-height: 620px;
    object-fit: cover;
    display: block;
}

.samane-mahvareh .display-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #dbe7f2;
    font-size: 14px;
    color: #555;
}

.samane-mahvareh .display-info .highlight,
.samane-mahvareh .display-info .time-val {
    color: #0b3d66;
    font-weight: 800;
}

.samane-mahvareh .mahvareh-gallery-top {
    display: flex;
    align-items: center;
    gap: 14px;
}

.samane-mahvareh .gallery-nav-btn {
    width: 44px;
    height: 44px;
    border: 1px solid #d7e2ef;
    background: #fff;
    border-radius: 12px;
    color: #0b3d66;
    cursor: pointer;
    flex: 0 0 auto;
    transition: all 0.25s ease;
}

.samane-mahvareh .gallery-nav-btn:hover {
    background: #eef5fb;
}

.samane-mahvareh .mahvareh-gallery-scroll {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 6px;
    flex: 1;
}

.samane-mahvareh .mahvareh-gallery-scroll::-webkit-scrollbar {
    height: 8px;
}

.samane-mahvareh .mahvareh-gallery-scroll::-webkit-scrollbar-thumb {
    background: #c9d9ea;
    border-radius: 20px;
}

.samane-mahvareh .thumb-item {
    min-width: 170px;
    max-width: 170px;
    background: #fff;
    border: 1px solid #dbe7f2;
    border-radius: 16px;
    padding: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
    flex: 0 0 auto;
}

.samane-mahvareh .thumb-item:hover {
    transform: translateY(-3px);
    border-color: #aac8e2;
}

.samane-mahvareh .thumb-item.active {
    border-color: #0b3d66;
    box-shadow: 0 0 0 2px rgba(11, 61, 102, 0.08);
}

.samane-mahvareh .thumb-item img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    margin-bottom: 8px;
}

.samane-mahvareh .thumb-time {
    display: block;
    text-align: center;
    font-size: 12px;
    color: #666;
    line-height: 1.7;
}

.samane-mahvareh .mahvareh-range-wrap {
    margin-top: 18px;
}

.samane-mahvareh .mahvareh-range {
    width: 100%;
    accent-color: #0b3d66;
    cursor: pointer;
}

@media (max-width: 992px) {
    .samane-mahvareh .samane-mahvareh-container {
        padding: 32px 24px;
    }

    .samane-mahvareh .mahvareh-main-image-wrap {
        min-height: 360px;
    }
}

@media (max-width: 768px) {
    .samane-mahvareh {
        padding: 30px 14px;
    }

    .samane-mahvareh .samane-mahvareh-container {
        padding: 24px 16px;
        border-radius: 18px;
    }

    .samane-mahvareh .samane-mahvareh-title {
        font-size: 22px;
    }

    .samane-mahvareh .samane-mahvareh-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .samane-mahvareh .samane-mahvareh-tools {
        width: 100%;
    }

    .samane-mahvareh .mahvareh-select-box {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    .samane-mahvareh .mahvareh-select-wrap {
        width: 100%;
    }

    .samane-mahvareh .mahvareh-select {
        width: 100%;
    }

    .samane-mahvareh .mahvareh-main-image-wrap {
        min-height: 240px;
    }

    .samane-mahvareh .display-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .samane-mahvareh .thumb-item {
        min-width: 140px;
        max-width: 140px;
    }

    .samane-mahvareh .thumb-item img {
        height: 82px;
    }
}

.samane-nph {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
    min-height: 100vh;
    background: transparent;
}

.samane-nph .samane-nph-container {
    width: 100%;
    max-width: 1440px;
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.samane-nph .samane-nph-header {
    text-align: center;
    margin-bottom: 40px;
}

.samane-nph .samane-nph-title {
    font-size: 26px;
    color: #0b3d66;
    font-weight: 800;
    margin-bottom: 12px;
}

.samane-nph .samane-nph-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #a0aec0;
}

.samane-nph .samane-nph-breadcrumb .active {
    color: #4a90e2;
    font-weight: 600;
}

.samane-nph .samane-nph-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 24px;
}

.samane-nph .nph-side-card {
    background: #f8fbff;
    border: 1px solid #e2eaf3;
    border-radius: 18px;
    padding: 20px;
    margin-bottom: 20px;
}

.samane-nph .side-card-title {
    font-size: 15px;
    color: #0b3d66;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.samane-nph .nph-field-group {
    margin-bottom: 15px;
	display: flex;
}

.samane-nph .nph-field-group label {
    display: block;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 8px;
}

.samane-nph .nph-select-wrap {
    position: relative;
    width: 100%;
}

.samane-nph .nph-select {
    width: 100%;
    padding: 10px 12px 10px 35px;
    border: 1px solid #d1dbe8;
    border-radius: 10px;
    background: #fff;
    font-size: 13px;
    color: #334155;
    appearance: none;
    cursor: pointer;
    outline: none;
    transition: border 0.2s;
}

.samane-nph .nph-select:focus {
    border-color: #4a90e2;
}

.samane-nph .select-arrow {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #0b3d66;
    pointer-events: none;
}

.samane-nph .nph-hours-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-top: 10px;
}

.samane-nph .hour-btn {
    padding: 8px 0;
    background: #475569;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 11px;
    cursor: pointer;
    transition: 0.2s;
}

.samane-nph .hour-btn:hover {
    background: #334155;
}

.samane-nph .hour-btn.active {
    background: #4a90e2;
    box-shadow: 0 4px 10px rgba(74, 144, 226, 0.3);
}

.samane-nph .nph-btn-primary {
    background: #4a90e2;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
}

.samane-nph .nph-viewer-header {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f8fbff;
    border: 1px solid #e2eaf3;
    padding: 15px 20px;
    border-radius: 18px;
    margin-bottom: 20px;
}

.samane-nph .nph-timer-box {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 180px;
}

.samane-nph .timer-label {
    font-size: 14px;
    font-weight: 700;
    color: #0b3d66;
}

.samane-nph .nph-viewer-title {
    font-size: 14px;
    color: #475569;
    font-weight: 500;
    line-height: 1.6;
}

.samane-nph .nph-map-card {
    background: #fff;
    border: 1px solid #e2eaf3;
    border-radius: 20px;
    padding: 20px;
}

.samane-nph .nph-slider-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 0 10px;
}

.samane-nph .nph-range-slider {
    flex: 1;
    accent-color: #4a90e2;
    cursor: pointer;
}

.samane-nph .slider-nav-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #d1dbe8;
    background: #fff;
    border-radius: 8px;
    color: #4a90e2;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.samane-nph .nph-map-display {
    width: 100%;
    min-height: 500px;
    background: #f1f5f9;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.samane-nph .nph-map-display img {
    max-width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 1100px) {
    .samane-nph .samane-nph-layout {
        grid-template-columns: 1fr;
    }

    .samane-nph .nph-sidebar {
        order: 2;
    }

    .samane-nph .nph-main-viewer {
        order: 1;
    }
}

@media (max-width: 768px) {
    .samane-nph .samane-nph-container {
        padding: 20px;
    }

    .samane-nph .nph-viewer-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .samane-nph .nph-hours-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.samane-aviation {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
    min-height: 100vh;
    background: transparent;
}

.samane-aviation .samane-aviation-container {
    width: 100%;
    max-width: 1440px;
    background: #fff;
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.samane-aviation .samane-aviation-header {
    text-align: center;
    margin-bottom: 35px;
}

.samane-aviation .samane-aviation-title {
    font-size: 28px;
    color: #0b3d66;
    font-weight: bold;
    margin-bottom: 12px;
}

.samane-aviation .samane-aviation-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #999;
}

.samane-aviation .samane-aviation-breadcrumb .active {
    color: #4a90e2;
    font-weight: 600;
}

.samane-aviation .aviation-tabs-wrapper {
    background: #f4f7f9;
    padding: 12px;
    border-radius: 16px;
    margin-bottom: 30px;
    overflow-x: auto;
}

.samane-aviation .aviation-tabs {
    display: flex;
    gap: 12px;
    min-width: max-content;
    justify-content: center;
}

.samane-aviation .avi-tab-btn {
    padding: 10px 24px;
    border: none;
    background: #fff;
    color: #555;
    border-radius: 12px;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
}

.samane-aviation .avi-tab-btn:hover {
    background: #eef2f5;
    color: #000;
}

.samane-aviation .avi-tab-btn.active {
    background: #0b3d66;
    color: #fff;
    box-shadow: 0 5px 15px rgba(11, 61, 102, 0.25);
}

.samane-aviation .map-frame {
    position: relative;
    width: 100%;
    height: 650px;
    background: #f0f2f5;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #eee;
}

.samane-aviation .map-canvas {
    width: 100%;
    height: 100%;
    position: relative;
}

.samane-aviation .map-canvas img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.samane-aviation .map-overlay-controls {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 8px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.samane-aviation .map-ctrl-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    border-radius: 10px;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: 0.2s;
}

.samane-aviation .map-ctrl-btn:hover {
    background: #fff;
    color: #4a90e2;
}

.samane-aviation .ctrl-sep {
    height: 1px;
    background: #ddd;
    margin: 4px 8px;
}

.samane-aviation .map-overlay-legend {
    position: absolute;
    bottom: 25px;
    left: 25px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    padding: 18px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.samane-aviation .leg-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 700;
    color: #444;
}

.samane-aviation .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

.samane-aviation .dot.vfr {
    background: #2ecc71;
}

.samane-aviation .dot.mvfr {
    background: #3498db;
}

.samane-aviation .dot.ifr {
    background: #e74c3c;
}

.samane-aviation .dot.lifr {
    background: #9b59b6;
}

.samane-aviation .dot.nodata {
    background: #95a5a6;
}

.samane-aviation .avi-marker {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 3px solid #fff;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.samane-aviation .avi-marker:hover {
    transform: scale(1.6);
    z-index: 20;
}

.samane-aviation .avi-marker.vfr {
    background: #2ecc71;
    box-shadow: 0 0 12px rgba(46, 204, 113, 0.6);
}

.samane-aviation .avi-marker.ifr {
    background: #e74c3c;
    box-shadow: 0 0 12px rgba(231, 76, 60, 0.6);
}

.samane-aviation .avi-marker.mvfr {
    background: #3498db;
    box-shadow: 0 0 12px rgba(52, 152, 219, 0.6);
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.samane-aviation-container {
    animation: slideUpFade 0.6s ease-out;
}

@media (max-width: 768px) {
    .samane-aviation {
        padding: 30px 12px;
        min-height: auto;
    }

    .samane-aviation .samane-aviation-container {
        padding: 24px 16px;
        border-radius: 18px;
    }

    .samane-aviation .samane-aviation-title {
        font-size: 22px;
    }

    .samane-aviation .samane-aviation-breadcrumb {
        flex-wrap: wrap;
        gap: 6px;
        font-size: 12px;
    }

    .samane-aviation .aviation-tabs-wrapper {
        padding: 10px;
        border-radius: 14px;
        margin-bottom: 20px;
    }

    .samane-aviation .aviation-tabs {
        justify-content: flex-start;
    }

    .samane-aviation .avi-tab-btn {
        padding: 9px 16px;
        font-size: 12px;
        border-radius: 10px;
        white-space: nowrap;
    }

    .samane-aviation .map-frame {
        height: 320px;
        border-radius: 16px;
    }

    .samane-aviation .map-overlay-controls {
        top: 12px;
        right: 12px;
        padding: 6px;
        border-radius: 12px;
    }

    .samane-aviation .map-ctrl-btn {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }

    .samane-aviation .map-overlay-legend {
        bottom: 12px;
        left: 12px;
        padding: 12px;
        border-radius: 14px;
        gap: 8px;
    }

    .samane-aviation .leg-item {
        font-size: 11px;
        gap: 8px;
    }

    .samane-aviation .dot {
        width: 11px;
        height: 11px;
    }

    .samane-aviation .avi-marker {
        width: 14px;
        height: 14px;
        border-width: 2px;
    }
}


.samane-marine {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
    min-height: 100vh;
    background: transparent;
}

.samane-marine .samane-marine-container {
    width: 100%;
    max-width: 1440px;
    background: #fff;
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    animation: slideUpFade 0.6s ease-out;
}

.samane-marine .samane-marine-header {
    text-align: center;
    margin-bottom: 35px;
}

.samane-marine .samane-marine-title {
    font-size: 28px;
    color: #0b3d66;
    font-weight: bold;
    margin-bottom: 12px;
}

.samane-marine .samane-marine-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #999;
}

.samane-marine .samane-marine-breadcrumb .active {
    color: #4a90e2;
    font-weight: 600;
}

.samane-marine .marine-tabs-wrapper {
    background: #f4f7f9;
    padding: 12px;
    border-radius: 16px;
    margin-bottom: 30px;
    overflow-x: auto;
}

.samane-marine .marine-tabs {
    display: flex;
    gap: 12px;
    min-width: max-content;
    justify-content: center;
}

.samane-marine .mar-tab-btn {
    padding: 10px 22px;
    border: none;
    background: #fff;
    color: #555;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
}

.samane-marine .mar-tab-btn.active {
    background: #0b3d66;
    color: #fff;
    box-shadow: 0 5px 15px rgba(11, 61, 102, 0.25);
}

.samane-marine .map-frame {
    position: relative;
    width: 100%;
    height: 650px;
    background: #e0e5ec;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #eee;
}

.samane-marine .map-canvas {
    width: 100%;
    height: 100%;
}

.samane-marine .map-canvas img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.samane-marine .marine-sub-selector {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    display: flex;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 5px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #007bff;
}

.samane-marine .sub-btn {
    padding: 8px 16px;
    border: none;
    background: transparent;
    font-size: 13px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    color: #007bff;
}

.samane-marine .sub-btn.active {
    background: #007bff;
    color: #fff;
}

.samane-marine .map-overlay-controls {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    background: white;
    padding: 8px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.samane-marine .map-ctrl-btn {
    width: 38px;
    height: 38px;
    border: none;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    color: #444;
}

.samane-marine .map-ctrl-btn:hover {
    background: #f0f4f8;
    color: #007bff;
}

.samane-marine .ctrl-sep {
    height: 1px;
    background: #eee;
    margin: 3px;
}

.samane-marine .mar-marker {
    position: absolute;
    cursor: pointer;
    z-index: 5;
    transition: 0.3s;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.samane-marine .mar-marker:hover {
    transform: scale(1.3);
}

.samane-marine .mar-marker.port {
    width: 14px;
    height: 14px;
    background: #f1c40f;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px #f1c40f;
}

.samane-marine .mar-marker.ship {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 15px solid #e74c3c;
}

@media (max-width: 768px) {
    .samane-marine {
        padding: 30px 12px;
        min-height: auto;
    }

    .samane-marine .samane-marine-container {
        padding: 24px 16px;
        border-radius: 18px;
    }

    .samane-marine .samane-marine-title {
        font-size: 22px;
        line-height: 1.8;
    }

    .samane-marine .samane-marine-breadcrumb {
        flex-wrap: wrap;
        gap: 6px;
        font-size: 12px;
    }

    .samane-marine .marine-tabs-wrapper {
        padding: 10px;
        border-radius: 14px;
        margin-bottom: 20px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .samane-marine .marine-tabs {
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 8px;
        min-width: max-content;
    }

    .samane-marine .mar-tab-btn {
        padding: 9px 16px;
        font-size: 12px;
        border-radius: 10px;
        white-space: nowrap;
        flex: 0 0 auto;
    }

    .samane-marine .marine-map-frame {
        position: relative;
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 8;
        min-height: 240px;
        border-radius: 16px;
        overflow: hidden;
    }

    .samane-marine #mainMarineMap {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .samane-marine .marine-time-selector {
        position: absolute;
        top: 10px;
        right: 10px;
        left: 10px;
        display: flex;
        justify-content: space-between;
        gap: 4px;
        padding: 4px;
        border-radius: 10px;
        z-index: 6;
        overflow: hidden;
    }

    .samane-marine .sub-btn {
        flex: 1;
        padding: 6px 8px;
        min-height: 32px;
        font-size: 11px;
        line-height: 1.4;
        border-radius: 8px;
        text-align: center;
        white-space: nowrap;
    }

    .samane-marine .map-overlay-controls,
    .samane-marine .marine-map-toolbar {
        position: absolute;
        top: auto !important;
        right: auto !important;
        bottom: 10px !important;
        left: 10px !important;
        display: flex;
        flex-direction: column;
        gap: 6px;
        z-index: 5;
    }

    .samane-marine .map-ctrl-btn,
    .samane-marine .map-tool {
        width: 30px;
        height: 30px;
        min-width: 30px;
        min-height: 30px;
        font-size: 12px;
        border-radius: 8px;
        padding: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .samane-marine .marine-legend {
        position: absolute;
        top: auto;
        left: auto;
        right: 10px;
        bottom: 10px;
        max-width: 145px;
        padding: 8px 10px;
        border-radius: 10px;
        gap: 6px;
        z-index: 4;
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .samane-marine .marine-legend-item {
        gap: 6px;
        font-size: 10px;
        line-height: 1.5;
    }

    .samane-marine .dot {
        width: 8px;
        height: 8px;
        flex: 0 0 8px;
    }

    .samane-marine .mar-marker {
        transform: scale(0.75);
        transform-origin: center;
    }

    .samane-marine .marine-viewer-title {
        font-size: 15px;
        line-height: 1.9;
    }
}

.samane-agri {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
    min-height: 100vh;
}

.samane-agri .samane-agri-container {
    width: 100%;
    max-width: 1440px;
    background: #fff;
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.samane-agri .samane-agri-header {
    text-align: center;
    margin-bottom: 35px;
}

.samane-agri .samane-agri-title {
    font-size: 28px;
    font-weight: bold;
    color: #0b3d66;
    margin-bottom: 10px;
}

.samane-agri .samane-agri-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #888;
}

.samane-agri .samane-agri-breadcrumb .active {
    color: #4a90e2;
}

.samane-agri .agri-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.samane-agri .agri-nav-btn {
    border: none;
    background: #f1f5f9;
    padding: 9px 22px;
    border-radius: 10px;
    font-size: 14px;
    color: #444;
    cursor: pointer;
    transition: all .25s ease;
    font-weight: 500;
}

.samane-agri .agri-nav-btn:hover {
    background: #e3efff;
}

.samane-agri .agri-nav-btn.active {
    background: #4a90e2;
    color: #fff;
    box-shadow: 0 5px 14px rgba(74, 144, 226, 0.35);
}

.samane-agri .samane-agri-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.samane-agri .samane-agri-card {
    display: flex;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #eee;
    height: 110px;
    transition: all .25s ease;
}

.samane-agri .samane-agri-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.samane-agri .card-image-side {
    width: 120px;
    min-width: 120px;
    height: 100%;
    overflow: hidden;
}

.samane-agri .card-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.samane-agri .card-info-side {
    flex: 1;
    padding: 14px 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.samane-agri .card-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
    line-height: 1.5;
}

.samane-agri .card-date {
    font-size: 12px;
    color: #888;
}

.samane-agri .download-btn-fixed {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 38px;
    height: 38px;
    border: none;
    background: #f4f6f9;
    color: #4a90e2;
    border-radius: 0 10px 0 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s ease;
}

.samane-agri .download-btn-fixed:hover {
    background: #4a90e2;
    color: #fff;
}

@media (max-width:1200px) {

    .samane-agri .samane-agri-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width:992px) {

    .samane-agri .samane-agri-container {
        padding: 35px 25px;
    }

}

@media (max-width:768px) {

    .samane-agri {
        padding: 40px 12px;
    }

    .samane-agri .samane-agri-container {
        padding: 28px 18px;
    }

    .samane-agri .samane-agri-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .samane-agri .samane-agri-card {
        height: 105px;
    }

}

@media (max-width:480px) {

    .samane-agri .samane-agri-title {
        font-size: 22px;
    }

    .samane-agri .agri-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .samane-agri .agri-nav-btn {
        white-space: nowrap;
        font-size: 13px;
        padding: 8px 18px;
    }

    .samane-agri .samane-agri-grid {
        grid-template-columns: 1fr;
    }

    .samane-agri .card-title {
        font-size: 13px;
    }

}

@media (max-width: 600px) {
    .samane-agri .samane-agri-breadcrumb {
        flex-wrap: wrap;
        row-gap: 4px;
        column-gap: 6px;
        font-size: 12px;
        justify-content: center;
        text-align: center;
        max-width: 95%;
        margin: 0 auto;
        line-height: 1.4;
    }

    .samane-agri .samane-agri-breadcrumb i {
        font-size: 10px;
    }
	
	.samane-agri .agro-alert-notice {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 400px) {
    .samane-agri .samane-agri-breadcrumb {
        font-size: 11px;
    }

    .samane-agri .samane-agri-breadcrumb i {
        font-size: 9px;
    }
}

.samane-agri .agro-alert-notice {
    background: #cff4fc;
    border-right: 5px solid #055160;
    padding: 16px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
}

.samane-agri .agro-alert-notice i {
    color: #055160;
    font-size: 22px;
}

.samane-agri .agro-alert-notice p {
    margin: 0;
    font-size: 14px;
    color: #2196f3;
    line-height: 1.7;
}

.samane-mountain {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
    min-height: 100vh;
}

.samane-mountain .mountain-container {
    width: 100%;
    max-width: 1440px;
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

.samane-mountain .mountain-alert-notice {
    background: #fff9db;
    border-right: 5px solid #f59f00;
    padding: 16px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
}

.samane-mountain .mountain-alert-notice i {
    color: #f59f00;
    font-size: 22px;
}

.samane-mountain .mountain-alert-notice p {
    margin: 0;
    font-size: 14px;
    color: #856404;
    line-height: 1.7;
}

.samane-mountain .mountain-header {
    text-align: center;
    margin-bottom: 40px;
}

.samane-mountain .mountain-page-title {
    font-size: 26px;
    color: #0b3d66;
    font-weight: 800;
    margin-bottom: 12px;
}

.samane-mountain .mountain-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #999;
}

.samane-mountain .mountain-breadcrumb .active {
    color: #4a90e2;
    font-weight: 600;
}

.samane-mountain .mountain-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.samane-mountain .mountain-card {
    display: flex;
    height: 110px;
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.samane-mountain .mountain-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06);
    border-color: #4a90e2;
}

.samane-mountain .mountain-card-img {
    width: 110px;
    min-width: 110px;
    height: 100%;
}

.samane-mountain .mountain-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.samane-mountain .mountain-card-content {
    flex: 1;
    padding: 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.samane-mountain .mountain-card-name {
    font-size: 14px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 5px;
    padding-left: 30px;
}

.samane-mountain .mountain-update-date {
    font-size: 12px;
    color: #a0aec0;
}

.samane-mountain .mountain-download-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 38px;
    height: 38px;
    border: none;
    background: #f7fafc;
    color: #4a90e2;
    border-radius: 0 12px 0 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.samane-mountain .mountain-download-btn:hover {
    background: #4a90e2;
    color: #fff;
}

@media (max-width: 1200px) {
    .samane-mountain .mountain-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .samane-mountain .mountain-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .samane-mountain {
        padding: 30px 15px;
    }

    .samane-mountain .mountain-container {
        padding: 25px 20px;
    }

    .samane-mountain .mountain-alert-notice {
        flex-direction: column;
        text-align: center;
    }

    .samane-mountain .mountain-grid {
        grid-template-columns: 1fr;
    }

    .samane-mountain .mountain-breadcrumb {
        flex-wrap: wrap;
        font-size: 11px;
    }
}

.samane-drought {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
    min-height: 100vh;
}

.samane-drought .samane-drought-container {
    width: 100%;
    max-width: 1440px;
    background: #fff;
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.samane-drought .samane-drought-header {
    text-align: center;
    margin-bottom: 35px;
}

.samane-drought .samane-drought-title {
    font-size: 28px;
    font-weight: bold;
    color: #0b3d66;
    margin-bottom: 10px;
}

.samane-drought .samane-drought-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #888;
}

.samane-drought .samane-drought-breadcrumb .active {
    color: #4a90e2;
}

.samane-drought .drought-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.samane-drought .drought-nav-btn {
    border: none;
    background: #f1f5f9;
    padding: 9px 22px;
    border-radius: 10px;
    font-size: 14px;
    color: #444;
    cursor: pointer;
    transition: all .25s ease;
    font-weight: 500;
    font-family: inherit;
}

.samane-drought .drought-nav-btn:hover {
    background: #e3efff;
}

.samane-drought .drought-nav-btn.active {
    background: #4a90e2;
    color: #fff;
    box-shadow: 0 5px 14px rgba(74, 144, 226, 0.35);
}

.samane-drought .samane-drought-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.samane-drought .samane-drought-card {
    display: flex;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #eee;
    height: 110px;
    transition: all .25s ease;
}

.samane-drought .samane-drought-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.samane-drought .drought-card-image-side {
    width: 120px;
    min-width: 120px;
    height: 100%;
    overflow: hidden;
}

.samane-drought .drought-card-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.samane-drought .drought-card-info-side {
    flex: 1;
    padding: 14px 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.samane-drought .drought-card-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
    line-height: 1.5;
    padding-left: 38px;
}

.samane-drought .drought-card-date {
    font-size: 12px;
    color: #888;
    margin: 0;
}

.samane-drought .drought-download-btn-fixed {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 38px;
    height: 38px;
    border: none;
    background: #f4f6f9;
    color: #4a90e2;
    border-radius: 0 10px 0 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s ease;
}

.samane-drought .drought-download-btn-fixed:hover {
    background: #4a90e2;
    color: #fff;
}

@media (max-width:1200px) {

    .samane-drought .samane-drought-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width:992px) {

    .samane-drought .samane-drought-container {
        padding: 35px 25px;
    }

}

@media (max-width:768px) {

    .samane-drought {
        padding: 40px 12px;
    }

    .samane-drought .samane-drought-container {
        padding: 28px 18px;
    }

    .samane-drought .samane-drought-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .samane-drought .samane-drought-card {
        height: 105px;
    }

}

@media (max-width:480px) {

    .samane-drought .samane-drought-title {
        font-size: 22px;
    }

    .samane-drought .drought-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .samane-drought .drought-nav-btn {
        white-space: nowrap;
        font-size: 13px;
        padding: 8px 18px;
    }

    .samane-drought .samane-drought-grid {
        grid-template-columns: 1fr;
    }

    .samane-drought .drought-card-title {
        font-size: 13px;
    }

}

@media (max-width: 600px) {
    .samane-drought .samane-drought-breadcrumb {
        flex-wrap: wrap;
        row-gap: 4px;
        column-gap: 6px;
        font-size: 12px;
        justify-content: center;
        text-align: center;
        max-width: 95%;
        margin: 0 auto;
        line-height: 1.4;
    }

    .samane-drought .samane-drought-breadcrumb i {
        font-size: 10px;
    }

	.samane-drought .drought-alert-notice {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 400px) {
    .samane-drought .samane-drought-breadcrumb {
        font-size: 11px;
    }

    .samane-drought .samane-drought-breadcrumb i {
        font-size: 9px;
    }
}

.samane-drought .drought-alert-notice {
    background: #cff4fc;
    border-right: 5px solid #055160;
    padding: 16px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
}

.samane-drought .drought-alert-notice i {
    color: #055160;
    font-size: 22px;
}

.samane-drought .drought-alert-notice p {
    margin: 0;
    font-size: 14px;
    color: #2196f3;
    line-height: 1.7;
}

.samane-content-page {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
    min-height: 100vh;
}

.samane-content-page .content-page-container {
    width: 100%;
    max-width: 1440px;
    background: #fff;
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.samane-content-page .content-header {
    text-align: center;
    margin-bottom: 35px;
}

.samane-content-page .content-title {
    font-size: 28px;
    font-weight: bold;
    color: #0b3d66;
    margin-bottom: 10px;
}

.samane-content-page .content-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #888;
}

.samane-content-page .content-breadcrumb .active {
    color: #4a90e2;
}

.samane-content-page .content-body {
    margin-top: 35px;
}

.samane-content-page .content-main-wrapper {
    width: 100%;
}

.samane-content-page .content-text-area {
    font-size: 17px;
    line-height: 2.1;
    color: #334155;
    text-align: justify;
    text-align-last: auto;
}

.samane-content-page .content-text-area p {
    margin: 0 0 18px;
}

.samane-content-page .content-text-area h2,
.samane-content-page .content-text-area h3 {
    color: #0b3d66;
    font-weight: 700;
    line-height: 1.7;
}

.samane-content-page .content-text-area h2 {
    font-size: 24px;
    margin: 36px 0 18px;
}

.samane-content-page .content-text-area h3 {
    font-size: 21px;
    margin: 32px 0 16px;
    position: relative;
    padding-right: 14px;
}

.samane-content-page .content-text-area h3::before {
    content: "";
    position: absolute;
    right: 0;
    top: 4px;
    width: 4px;
    height: 22px;
    border-radius: 10px;
    background: #4a90e2;
}

.samane-content-page .content-text-area strong {
    color: #0b3d66;
    font-weight: 700;
}

.samane-content-page .content-text-area a {
    color: #4a90e2;
    font-weight: 600;
    text-decoration: none;
    transition: color .25s ease;
}

.samane-content-page .content-text-area a:hover {
    color: #0b3d66;
}

.samane-content-page .content-text-area ul,
.samane-content-page .content-text-area ol {
    margin: 20px 0 26px;
    padding-right: 0;
}

.samane-content-page .content-text-area ul {
    list-style: none;
}

.samane-content-page .content-text-area li {
    position: relative;
    margin-bottom: 12px;
    padding-right: 26px;
    line-height: 2;
}

.samane-content-page .content-text-area ul li::before {
    content: "\F26A";
    font-family: "bootstrap-icons";
    position: absolute;
    right: 0;
    top: 0px;
    color: #4a90e2;
    font-size: 16px;
}

.samane-content-page .content-featured-image {
    float: left;
    width: 330px;
    max-width: 38%;
    margin: 0 30px 20px 0;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
}

.samane-content-page .content-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.samane-content-page .content-featured-image figcaption {
    padding: 10px 12px;
    text-align: center;
    font-size: 13px;
    color: #64748b;
    background: #f8fafc;
    border-top: 1px solid #eef2f7;
}

.samane-content-page .content-main-wrapper::after {
    content: "";
    display: block;
    clear: both;
}

.samane-content-page .content-text-area blockquote {
    margin: 28px 0;
    padding: 18px 22px;
    border-right: 5px solid #4a90e2;
    background: #f8fbff;
    border-radius: 14px;
    color: #334155;
    font-size: 16px;
    line-height: 2;
}

.samane-content-page .content-text-area table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    font-size: 15px;
    overflow: hidden;
    border-radius: 14px;
}

.samane-content-page .content-text-area table th,
.samane-content-page .content-text-area table td {
    border: 1px solid #e5e7eb;
    padding: 12px 14px;
    text-align: right;
}

.samane-content-page .content-text-area table th {
    background: #f1f5f9;
    color: #0b3d66;
    font-weight: 700;
}

@media (max-width: 992px) {

    .samane-content-page .content-page-container {
        padding: 35px 25px;
    }

    .samane-content-page .content-featured-image {
        width: 300px;
        max-width: 42%;
    }

}

@media (max-width: 768px) {

    .samane-content-page {
        padding: 40px 12px;
    }

    .samane-content-page .content-page-container {
        padding: 28px 18px;
    }

    .samane-content-page .content-title {
        font-size: 23px;
    }

    .samane-content-page .content-text-area {
        font-size: 16px;
        line-height: 2;
    }

    .samane-content-page .content-featured-image {
        float: none;
        width: 100%;
        max-width: 100%;
        margin: 0 0 25px;
        border-radius: 16px;
    }

}

@media (max-width: 600px) {

    .samane-content-page .content-breadcrumb {
        flex-wrap: wrap;
        row-gap: 4px;
        column-gap: 6px;
        font-size: 12px;
        justify-content: center;
        text-align: center;
        max-width: 95%;
        margin: 0 auto;
        line-height: 1.4;
    }

    .samane-content-page .content-breadcrumb i {
        font-size: 10px;
    }

}

@media (max-width: 480px) {

    .samane-content-page .content-title {
        font-size: 22px;
    }

    .samane-content-page .content-text-area {
        font-size: 15.5px;
        line-height: 1.95;
    }

    .samane-content-page .content-text-area h2 {
        font-size: 21px;
    }

    .samane-content-page .content-text-area h3 {
        font-size: 18px;
    }

}

@media (max-width: 400px) {

    .samane-content-page .content-breadcrumb {
        font-size: 11px;
    }

    .samane-content-page .content-breadcrumb i {
        font-size: 9px;
    }

}

.org-tree {
    position: relative !important;
}

.org-tree .dropdown-toggle::after {
    display: none !important;
}

.org-dropdown {
    background: #0c2f44 !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0 0 10px 10px;
    padding: 8px 0;
    width: max-content !important;
    min-width: 260px !important;
    max-width: 90vw !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: absolute !important;
    top: calc(100% + 15px) !important;
    right: 0 !important;
    left: auto !important;
    z-index: 1050;
    margin: 0 !important;
    text-align: right;
}

.org-dropdown .dropdown-item {
    color: #ffffff !important;
    padding: 12px 20px;
    font-size: .88rem;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: right;
    background: transparent !important;
    white-space: nowrap !important;
    direction: rtl;
    transition: all 0.25s ease;
}

.org-dropdown .dropdown-item:hover {
    background: rgba(134, 204, 238, 0.15) !important;
    color: #86ccee !important;
    padding-right: 25px;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.sub-menu {
    display: none;
    position: absolute;
    top: 0;
    right: 100%;
    margin-right: 2px;
    width: max-content !important;
    min-width: 240px !important;
    max-width: 80vw !important;
    background: #0a2638 !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px 0;
    box-shadow: -8px 8px 20px rgba(0, 0, 0, 0.4);
    z-index: 1060;
}

@media (min-width: 992px) {
    .dropdown-submenu:hover>.sub-menu {
        display: block !important;
    }
}

@media (min-width: 992px) and (max-width: 1300px) {
    .sub-menu .sub-menu {
        right: auto !important;
        left: 100% !important;
        margin-left: 2px;
        margin-right: 0;
        box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.4);
    }
}

.org-dropdown .bi-chevron-left {
    font-size: 10px;
    margin-right: 15px;
    opacity: 0.7;
}

@media (max-width: 991.98px) {
    .org-dropdown {
        position: static !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
        box-shadow: none !important;
        background: rgba(0, 0, 0, 0.15) !important;
        border: none !important;
        border-radius: 8px !important;
        margin-top: 10px !important;
    }

    .org-dropdown .dropdown-item {
        white-space: normal !important;
        padding: 12px 15px;
    }

    .dropdown-submenu>.sub-menu {
        position: static !important;
        width: 100% !important;
        min-width: 100% !important;
        display: none;
        background: rgba(0, 0, 0, 0.1) !important;
        border: none !important;
        box-shadow: none !important;
        padding-right: 20px;
    }

    .dropdown-submenu.open>.sub-menu {
        display: block !important;
    }

    .dropdown-submenu.open>.dropdown-item .bi-chevron-left {
        transform: rotate(-90deg);
    }
}