/* ===== VITTHAL LANGHE PATIL — INTERACTIVE MAP LAYOUT ===== */
/* Indigo (#1E3A5F) + Cyan (#06B6D4) + Sand (#F5F0E8) */
/* Space Grotesk + Playfair Display (cartographic meets editorial) */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    --indigo: #1E3A5F;
    --indigo-dark: #152C4A;
    --indigo-light: #2A4F7A;
    --indigo-50: #EFF6FF;
    --indigo-100: #DBEAFE;
    --cyan: #06B6D4;
    --cyan-dark: #0891B2;
    --cyan-50: #ECFEFF;
    --cyan-100: #CFFAFE;
    --sand: #F5F0E8;
    --sand-100: #EDE8DD;
    --sand-200: #E0D9CC;
    --slate-300: #CBD5E1;
    --slate-400: #94A3B8;
    --slate-500: #64748B;
    --slate-600: #475569;
    --slate-700: #334155;
    --white: #FFFFFF;
    --danger: #EF4444;
    --amber: #F59E0B;
    --green: #22C55E;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .04);
    --shadow-md: 0 4px 14px rgba(0, 0, 0, .07);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, .1);
    --tr: .35s cubic-bezier(.4, 0, .2, 1);
    --radius: 10px
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--sand);
    color: var(--slate-600);
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

a {
    text-decoration: none;
    color: inherit
}

img {
    max-width: 100%;
    display: block
}

ul,
ol {
    list-style: none
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    color: var(--indigo);
    font-weight: 700
}

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px
}

/* ===== NAVBAR — cartographic header ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--indigo);
    padding: 0;
    transition: var(--tr)
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(30, 58, 95, .3)
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 54px
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px
}

.logo-pin {
    width: 28px;
    height: 28px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center
}

.logo-pin::before {
    content: '';
    width: 20px;
    height: 20px;
    background: var(--cyan);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    position: absolute
}

.logo-pin::after {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--white);
    border-radius: 50%;
    position: absolute;
    z-index: 2
}

.logo-name {
    font-family: 'Space Grotesk';
    font-size: .78rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -.02em
}

.logo-name span {
    color: var(--cyan)
}

.nav-links {
    display: flex;
    gap: 0
}

.nav-links a {
    color: rgba(255, 255, 255, .4);
    font-family: 'Space Grotesk';
    font-size: .68rem;
    font-weight: 600;
    padding: 15px 12px;
    transition: var(--tr);
    position: relative
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 12px;
    right: 12px;
    height: 2px;
    background: var(--cyan);
    border-radius: 2px 2px 0 0
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--white);
    border-radius: 4px;
    transition: var(--tr)
}

/* ===== HERO — map-inspired header ===== */
.hero {
    padding: 108px 0 48px;
    background: var(--indigo);
    position: relative;
    overflow: hidden
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255, 255, 255, .015) 39px, rgba(255, 255, 255, .015) 40px), repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255, 255, 255, .015) 39px, rgba(255, 255, 255, .015) 40px)
}

.hero::after {
    content: '19°06\'N 74°46\'E';
    position: absolute;
    bottom: 16px;
    right: 24px;
    font-family: 'Space Grotesk';
    font-size: .52rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .06);
    letter-spacing: .2em
}

.hero-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
    position: relative;
    z-index: 2
}

.hero-text .h-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(6, 182, 212, .08);
    border: 1px solid rgba(6, 182, 212, .12);
    color: var(--cyan);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: .5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    margin-bottom: 12px
}

.hero-text .h-tag .pin-ico {
    width: 5px;
    height: 5px;
    background: var(--cyan);
    border-radius: 50%;
    animation: pulse 2s ease infinite
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .3;
        transform: scale(1.5)
    }
}

.hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 10px
}

.hero h1 em {
    color: var(--cyan);
    font-style: italic
}

.hero-desc {
    color: rgba(255, 255, 255, .3);
    font-size: .82rem;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 440px
}

.hero-btns {
    display: flex;
    gap: 10px
}

.hero-coord {
    position: absolute;
    top: 20px;
    left: 0;
    font-family: 'Space Grotesk';
    font-size: .46rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .08);
    letter-spacing: .3em;
    text-transform: uppercase;
    writing-mode: vertical-lr;
    transform: rotate(180deg)
}

.hero-img {
    position: relative
}

.hero-img img {
    width: 100%;
    max-width: 360px;
    border-radius: var(--radius);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
    border: 2px solid rgba(6, 182, 212, .1)
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 8px;
    font-family: 'Space Grotesk';
    font-weight: 700;
    font-size: .74rem;
    cursor: pointer;
    border: none;
    transition: var(--tr)
}

.btn-cyan {
    background: var(--cyan);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(6, 182, 212, .2)
}

.btn-cyan:hover {
    background: var(--cyan-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(6, 182, 212, .25)
}

.btn-indigo {
    background: var(--indigo-light);
    color: var(--white)
}

.btn-indigo:hover {
    background: var(--indigo);
    transform: translateY(-1px)
}

.btn-glass {
    background: rgba(255, 255, 255, .04);
    color: rgba(255, 255, 255, .5);
    border: 1px solid rgba(255, 255, 255, .06)
}

.btn-glass:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff
}

.btn-outline {
    background: transparent;
    color: var(--cyan);
    border: 1.5px solid var(--cyan)
}

.btn-outline:hover {
    background: var(--cyan);
    color: var(--white)
}

/* ===== SECTIONS ===== */
.section {
    padding: 56px 0
}

.sec-sand {
    background: var(--sand)
}

.sec-white {
    background: var(--white)
}

.sec-indigo {
    background: var(--indigo);
    color: var(--white)
}

.sec-eyebrow {
    font-family: 'Space Grotesk';
    font-size: .5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--cyan);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px
}

.sec-eyebrow::before {
    content: '◉';
    font-size: .4rem
}

.sec-title {
    font-family: 'Playfair Display';
    font-size: clamp(1.3rem, 2.6vw, 1.7rem);
    margin-bottom: 6px
}

.sec-desc {
    color: var(--slate-500);
    font-size: .82rem;
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 20px
}

/* ===== INTERACTIVE MAP PREVIEW (CSS map with pins) ===== */
.map-container {
    position: relative;
    background: var(--indigo);
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 380px;
    margin: 20px 0;
    box-shadow: var(--shadow-lg)
}

.map-grid {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 29px, rgba(6, 182, 212, .04) 29px, rgba(6, 182, 212, .04) 30px), repeating-linear-gradient(90deg, transparent, transparent 29px, rgba(6, 182, 212, .04) 29px, rgba(6, 182, 212, .04) 30px)
}

.map-coord {
    position: absolute;
    top: 12px;
    left: 14px;
    font-family: 'Space Grotesk';
    font-size: .46rem;
    font-weight: 700;
    color: rgba(6, 182, 212, .15);
    letter-spacing: .15em
}

.map-label {
    position: absolute;
    bottom: 12px;
    right: 14px;
    font-family: 'Space Grotesk';
    font-size: .4rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .08);
    letter-spacing: .2em;
    text-transform: uppercase
}

/* MAP PINS */
.map-pin {
    position: absolute;
    cursor: pointer;
    z-index: 3;
    transition: var(--tr)
}

.map-pin:hover {
    transform: scale(1.15);
    z-index: 5
}

.pin-marker {
    width: 28px;
    height: 28px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center
}

.pin-marker::before {
    content: '';
    width: 22px;
    height: 22px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    position: absolute
}

.pin-marker::after {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--white);
    border-radius: 50%;
    position: absolute;
    z-index: 2
}

.pin-marker.c-cyan::before {
    background: var(--cyan)
}

.pin-marker.c-amber::before {
    background: var(--amber)
}

.pin-marker.c-green::before {
    background: var(--green)
}

.pin-marker.c-danger::before {
    background: var(--danger)
}

.pin-marker.c-indigo::before {
    background: var(--indigo-light)
}

.pin-pulse {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(6, 182, 212, .08);
    animation: ppulse 2s ease infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

@keyframes ppulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: .6
    }

    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0
    }
}

.pin-label {
    position: absolute;
    top: -8px;
    left: 34px;
    background: var(--white);
    border-radius: 4px;
    padding: 3px 8px;
    font-family: 'Space Grotesk';
    font-size: .52rem;
    font-weight: 700;
    color: var(--indigo);
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transition: var(--tr);
    pointer-events: none
}

.map-pin:hover .pin-label {
    opacity: 1;
    top: -12px
}

.pin-label::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-right: 4px solid var(--white)
}

/* ===== ZONE CARDS (region areas) ===== */
.zone-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 20px 0
}

.z-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    border: 1px solid var(--sand-100);
    transition: var(--tr);
    position: relative;
    overflow: hidden
}

.z-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--cyan);
    transform: scaleX(0);
    transform-origin: left;
    transition: .5s
}

.z-card:hover::before {
    transform: scaleX(1)
}

.z-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px)
}

.z-card .z-coord {
    font-family: 'Space Grotesk';
    font-size: .42rem;
    font-weight: 600;
    color: var(--slate-400);
    letter-spacing: .15em;
    margin-bottom: 6px
}

.z-card .z-name {
    font-family: 'Space Grotesk';
    font-size: .82rem;
    font-weight: 700;
    color: var(--indigo);
    margin-bottom: 2px
}

.z-card .z-type {
    font-size: .52rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 8px;
    display: inline-block;
    padding: 2px 6px;
    border-radius: 3px
}

.z-card .z-type.infra {
    background: var(--cyan-50);
    color: var(--cyan)
}

.z-card .z-type.health {
    background: #ECFDF5;
    color: #22C55E
}

.z-card .z-type.edu {
    background: #FEF3C7;
    color: #D97706
}

.z-card .z-type.water {
    background: var(--indigo-50);
    color: var(--indigo-light)
}

.z-card .z-type.agri {
    background: #F0FDF4;
    color: #16A34A
}

.z-card .z-type.urban {
    background: #FDF2F8;
    color: #DB2777
}

.z-card p {
    font-size: .72rem;
    color: var(--slate-500);
    line-height: 1.6
}

/* ===== DUO ===== */
.duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
    margin: 24px 0
}

.duo.flip {
    direction: rtl
}

.duo.flip>* {
    direction: ltr
}

.duo-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg)
}

.duo-img img {
    width: 100%;
    height: 340px;
    object-fit: cover
}

/* ===== PROJECT CATEGORY CARDS ===== */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 20px 0
}

.cat-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    gap: 14px;
    border: 1px solid var(--sand-100);
    transition: var(--tr)
}

.cat-card:hover {
    border-color: var(--cyan);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px)
}

.cat-ico {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0
}

.cat-ico.c1 {
    background: var(--cyan-50)
}

.cat-ico.c2 {
    background: var(--indigo-50)
}

.cat-ico.c3 {
    background: #FEF3C7
}

.cat-ico.c4 {
    background: #ECFDF5
}

.cat-ico.c5 {
    background: #FDF2F8
}

.cat-ico.c6 {
    background: #F0FDF4
}

.cat-card h3 {
    font-family: 'Space Grotesk';
    font-size: .78rem;
    font-weight: 700;
    margin-bottom: 3px;
    color: var(--indigo)
}

.cat-card p {
    font-size: .72rem;
    color: var(--slate-500);
    line-height: 1.6
}

/* NEWS CARDS */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 20px 0
}

.n-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--sand-100);
    transition: var(--tr)
}

.n-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: transparent
}

.n-card-img {
    height: 140px;
    overflow: hidden
}

.n-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s
}

.n-card:hover .n-card-img img {
    transform: scale(1.04)
}

.n-card-body {
    padding: 14px
}

.n-tag {
    font-family: 'Space Grotesk';
    font-size: .46rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--cyan);
    margin-bottom: 4px
}

.n-card-body h3 {
    font-family: 'Playfair Display';
    font-size: .88rem;
    margin-bottom: 4px;
    color: var(--indigo)
}

.n-card-body p {
    font-size: .72rem;
    color: var(--slate-500);
    line-height: 1.6
}

/* DATA CARDS */
.data-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 20px 0
}

.d-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 22px;
    border: 1px solid var(--sand-100);
    transition: var(--tr)
}

.d-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--cyan)
}

.d-card .ico {
    font-size: 1.1rem;
    margin-bottom: 8px
}

.d-card h3 {
    font-family: 'Space Grotesk';
    font-size: .8rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--indigo)
}

.d-card p {
    font-size: .74rem;
    color: var(--slate-500);
    line-height: 1.65
}

/* CHIP BAR */
.chip-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 10px
}

.chip {
    background: var(--cyan-50);
    color: var(--cyan-dark);
    padding: 3px 10px;
    border-radius: 4px;
    font-family: 'Space Grotesk';
    font-size: .62rem;
    font-weight: 700
}

/* VISION BOX */
.vision-box {
    background: var(--indigo);
    border-radius: var(--radius);
    padding: 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 20px 0
}

.vision-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 29px, rgba(6, 182, 212, .03) 29px, rgba(6, 182, 212, .03) 30px), repeating-linear-gradient(90deg, transparent, transparent 29px, rgba(6, 182, 212, .03) 29px, rgba(6, 182, 212, .03) 30px)
}

.vision-box blockquote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: rgba(255, 255, 255, .7);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto 14px;
    position: relative;
    z-index: 2
}

.vision-box .v-author {
    font-family: 'Space Grotesk';
    font-size: .7rem;
    font-weight: 700;
    color: var(--cyan)
}

.vision-box .v-sub {
    font-size: .52rem;
    color: rgba(255, 255, 255, .2)
}

/* PAGE HEADER */
.pg-header {
    padding: 108px 0 40px;
    background: var(--indigo);
    position: relative;
    overflow: hidden
}

.pg-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255, 255, 255, .012) 39px, rgba(255, 255, 255, .012) 40px), repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255, 255, 255, .012) 39px, rgba(255, 255, 255, .012) 40px)
}

.pg-header .container {
    position: relative;
    z-index: 2
}

.pg-header h1 {
    font-size: clamp(1.5rem, 3.2vw, 2.2rem);
    color: var(--white);
    margin-bottom: 6px
}

.pg-header h1 span {
    color: var(--cyan);
    font-style: italic
}

.pg-header p {
    color: rgba(255, 255, 255, .3);
    font-size: .82rem
}

.breadcrumb {
    display: flex;
    gap: 6px;
    margin-top: 8px;
    font-size: .64rem
}

.breadcrumb a {
    color: var(--cyan);
    font-weight: 600
}

.breadcrumb em {
    color: rgba(255, 255, 255, .12);
    font-style: normal
}

.pg-header .coord-tag {
    position: absolute;
    bottom: 10px;
    right: 24px;
    font-family: 'Space Grotesk';
    font-size: .42rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .05);
    letter-spacing: .2em
}

/* CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin: 20px 0
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.fg {
    display: flex;
    flex-direction: column;
    gap: 3px
}

.fg label {
    font-family: 'Space Grotesk';
    font-size: .52rem;
    font-weight: 700;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: .1em
}

.fg input,
.fg textarea,
.fg select {
    padding: 10px 14px;
    border-radius: 8px;
    border: 1.5px solid var(--sand-100);
    background: var(--white);
    color: var(--indigo);
    font-family: 'Space Grotesk';
    font-size: .82rem;
    transition: var(--tr);
    outline: none
}

.fg input:focus,
.fg textarea:focus,
.fg select:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, .05)
}

.fg textarea {
    min-height: 100px;
    resize: vertical
}

.c-sidebar {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.c-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border: 1px solid var(--sand-100)
}

.c-ico {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--cyan-50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    flex-shrink: 0
}

.c-card h4 {
    font-family: 'Space Grotesk';
    font-size: .74rem;
    color: var(--indigo);
    font-weight: 700;
    margin-bottom: 1px
}

.c-card p {
    color: var(--slate-500);
    font-size: .68rem;
    line-height: 1.5
}

/* ===== FOOTER ===== */
.footer {
    background: var(--indigo);
    padding: 40px 0 0
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 24px;
    padding-bottom: 24px
}

.footer-about h3 {
    color: var(--white);
    font-family: 'Playfair Display';
    font-size: .92rem;
    margin-bottom: 6px
}

.footer-about p {
    color: var(--slate-500);
    font-size: .72rem;
    line-height: 1.7
}

.footer-links h4 {
    color: var(--white);
    font-family: 'Space Grotesk';
    font-size: .74rem;
    font-weight: 700;
    margin-bottom: 8px
}

.footer-links a {
    display: block;
    color: var(--slate-500);
    font-size: .68rem;
    padding: 3px 0;
    transition: var(--tr)
}

.footer-links a:hover {
    color: var(--cyan)
}

.footer-contact h4 {
    color: var(--white);
    font-family: 'Space Grotesk';
    font-size: .74rem;
    font-weight: 700;
    margin-bottom: 8px
}

.footer-contact p {
    color: var(--slate-500);
    font-size: .68rem;
    line-height: 1.7
}

.footer-bar {
    border-top: 1px solid rgba(255, 255, 255, .04);
    padding: 12px 0
}

.footer-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6px
}

.footer-bar-left {
    color: var(--slate-600);
    font-size: .64rem
}

.footer-bar-right {
    font-size: .64rem;
    color: var(--slate-600)
}

.footer-bar-right a {
    color: var(--cyan);
    font-weight: 700
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 8px 0 0;
    margin-top: 4px
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .04);
    color: var(--slate-500);
    transition: var(--tr)
}

.footer-social a:hover {
    background: var(--cyan);
    color: var(--white);
    transform: translateY(-2px)
}

.footer-social a svg {
    width: 12px;
    height: 12px;
    fill: currentColor
}

/* ANIMATIONS */
.rv {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .5s ease, transform .5s ease
}

.rv.on {
    opacity: 1;
    transform: translateY(0)
}

.rvl {
    opacity: 0;
    transform: translateX(-18px);
    transition: opacity .5s ease, transform .5s ease
}

.rvl.on {
    opacity: 1;
    transform: translateX(0)
}

.rvr {
    opacity: 0;
    transform: translateX(18px);
    transition: opacity .5s ease, transform .5s ease
}

.rvr.on {
    opacity: 1;
    transform: translateX(0)
}

/* RESPONSIVE */
@media(max-width:1024px) {

    .hero-row,
    .duo,
    .duo.flip,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .duo.flip {
        direction: ltr
    }

    .zone-grid,
    .data-grid,
    .news-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 240px;
        height: 100vh;
        background: var(--indigo);
        flex-direction: column;
        padding: 60px 24px;
        gap: 0;
        transition: var(--tr);
        box-shadow: -4px 0 20px rgba(0, 0, 0, .2)
    }

    .nav-links.active {
        right: 0
    }

    .nav-toggle {
        display: flex
    }

    .nav-links a {
        padding: 10px 0
    }

    .nav-links a.active::after {
        display: none
    }

    .zone-grid,
    .data-grid,
    .news-grid,
    .cat-grid {
        grid-template-columns: 1fr
    }

    .map-container {
        min-height: 300px
    }

    .footer-bar .container {
        flex-direction: column;
        text-align: center
    }
}