/*=========================================================
    TBILISI GREENPULSE
    STYLE.CSS

    1. Reset
    2. Variables
    3. Global
    4. Utilities
    5. Background
    6. Header
    7. Navigation
    8. Hero
==========================================================*/


/*=========================================================
RESET
==========================================================*/

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

html{
    scroll-behavior:smooth;
    font-size:16px;
}

body{

    font-family:
        "Segoe UI",
        Tahoma,
        Geneva,
        Verdana,
        sans-serif;

    background:var(--background);

    color:var(--text);

    line-height:1.6;

    overflow-x:hidden;

}

img{

    display:block;

    max-width:100%;

}

button{

    border:none;

    outline:none;

    cursor:pointer;

    background:none;

}

input,
select{

    outline:none;

    border:none;

    font-family:inherit;

}

ul{

    list-style:none;

}

a{

    text-decoration:none;

    color:inherit;

}


/*=========================================================
ROOT VARIABLES
==========================================================*/

:root{

    --accent:#31c96c;

    --accent-dark:#12884d;

    --accent-light:#6ff3a5;

    --warning:#ffb23d;

    --danger:#ff5a67;

    --blue:#4e9fff;

    --text:#ffffff;

    --text-light:#cbd5df;

    --background:#081118;

    --surface:#0d1822;

    --surface-2:#132534;

    --glass:rgba(255,255,255,.06);

    --glass-border:rgba(255,255,255,.12);

    --shadow:
        0 20px 50px
        rgba(0,0,0,.35);

    --radius:20px;

    --transition:.35s;

    --max-width:1300px;

}


/*=========================================================
GLOBAL
==========================================================*/

body{

    min-height:100vh;

    background:

        radial-gradient(
            circle at top,
            rgba(48,201,108,.18),
            transparent 30%
        ),

        radial-gradient(
            circle at right,
            rgba(60,160,255,.15),
            transparent 30%
        ),

        #081118;

}

.container{

    width:min(92%, var(--max-width));

    margin-inline:auto;

}

section{

    padding:110px 0;

    position:relative;

}

.section-heading{

    max-width:700px;

    margin:auto;

    text-align:center;

    margin-bottom:70px;

}

.section-tag{

    display:inline-block;

    padding:.55rem 1.2rem;

    border-radius:999px;

    background:rgba(49,201,108,.15);

    color:var(--accent);

    margin-bottom:18px;

    font-weight:600;

}

.section-heading h2{

    font-size:clamp(2rem,5vw,3.3rem);

    margin-bottom:18px;

}

.section-heading p{

    color:var(--text-light);

}


/*=========================================================
BUTTONS
==========================================================*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border-radius:100px;

    transition:.35s;

    font-weight:600;

}

.primary{

    background:var(--accent);

    color:#fff;

}

.primary:hover{

    background:var(--accent-dark);

    transform:translateY(-3px);

}

.secondary{

    border:1px solid
    rgba(255,255,255,.18);

    backdrop-filter:blur(12px);

}

.secondary:hover{

    background:rgba(255,255,255,.08);

}


/*=========================================================
BACKGROUND
==========================================================*/

.background{

    position:fixed;

    inset:0;

    z-index:-2;

    overflow:hidden;

}

.gradient{

    position:absolute;

    border-radius:50%;

    filter:blur(120px);

    animation:float 14s infinite ease-in-out;

}

.gradient.one{

    width:500px;

    height:500px;

    background:#31c96c;

    top:-150px;

    left:-150px;

    opacity:.18;

}

.gradient.two{

    width:600px;

    height:600px;

    background:#4d8fff;

    bottom:-250px;

    right:-150px;

    opacity:.18;

}

.gradient.three{

    width:350px;

    height:350px;

    background:#31c96c;

    right:35%;

    top:25%;

    opacity:.08;

}


/*=========================================================
HEADER
==========================================================*/

.header{

    position:fixed;

    width:100%;

    top:0;

    left:0;

    z-index:999;

    padding:20px 0;

}

.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:var(--glass);

    border:1px solid
    var(--glass-border);

    backdrop-filter:blur(20px);

    padding:16px 28px;

    border-radius:18px;

}


/*=========================================================
LOGO
==========================================================*/

.logo{

    display:flex;

    align-items:center;

    gap:14px;

}

.logo-icon{

    width:58px;

    height:58px;

    border-radius:50%;

    display:grid;

    place-items:center;

    background:rgba(255,255,255,.06);

}

.logo-icon svg{

    width:38px;

}

.logo-text{

    display:flex;

    flex-direction:column;

}

.logo-text span{

    font-size:.85rem;

    color:var(--text-light);

}

.logo-text strong{

    font-size:1.2rem;

}


/*=========================================================
NAVIGATION
==========================================================*/

.nav-links{

    display:flex;

    gap:36px;

}

.nav-links a{

    position:relative;

    transition:.3s;

    color:var(--text-light);

}

.nav-links a:hover{

    color:white;

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--accent);

    transition:.3s;

}

.nav-links a:hover::after{

    width:100%;

}


/*=========================================================
BUTTONS
==========================================================*/

.theme-btn{

    width:46px;

    height:46px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

}

.menu-btn{

    display:none;

    flex-direction:column;

    gap:6px;

}

.menu-btn span{

    width:28px;

    height:3px;

    background:white;

    border-radius:50px;

}


/*=========================================================
HERO
==========================================================*/

.hero{

    padding-top:180px;

}

.hero-grid{

    display:grid;

    grid-template-columns:
        repeat(2,1fr);

    gap:70px;

    align-items:center;

}

.hero-badge{

    display:inline-block;

    margin-bottom:20px;

    padding:10px 18px;

    border-radius:999px;

    background:rgba(49,201,108,.12);

    color:var(--accent);

}

.hero h1{

    font-size:clamp(3rem,6vw,5.2rem);

    line-height:1.1;

    margin-bottom:30px;

}

.hero h1 span{

    color:var(--accent);

}

.hero p{

    max-width:620px;

    color:var(--text-light);

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}


/*=========================================================
HERO CARD
==========================================================*/

.hero-card{

    background:var(--glass);

    border:1px solid
    rgba(255,255,255,.12);

    border-radius:30px;

    backdrop-filter:blur(25px);

    padding:50px;

    position:relative;

    min-height:520px;

    box-shadow:var(--shadow);

}

.sun{

    font-size:4rem;

    position:absolute;

    top:40px;

    right:45px;

}

.pulse-line{

    margin-top:80px;

}

.pulse-line svg{

    width:100%;

    fill:none;

    stroke:var(--accent);

    stroke-width:5;

}

.district-outline{

    margin-top:70px;

}

.district-outline svg{

    width:100%;

    fill:none;

    stroke:#5fe494;

    stroke-width:3;

}


/*=========================================================
    DASHBOARD
==========================================================*/

.dashboard{

    position:relative;

}

.dashboard-controls{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:40px;

    flex-wrap:wrap;

    margin-bottom:70px;

}

.selector{

    flex:1;

    min-width:280px;

}

.selector label{

    display:block;

    margin-bottom:15px;

    font-weight:600;

    color:var(--text-light);

}

.selector select{

    width:100%;

    padding:18px 22px;

    border-radius:18px;

    background:var(--surface);

    color:white;

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

}

.selector select:hover{

    border-color:var(--accent);

}

.selector select:focus{

    border-color:var(--accent);

    box-shadow:0 0 0 4px rgba(49,201,108,.15);

}


/*=========================================================
    ECO SCORE
==========================================================*/

.health-score{

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:20px;

}

.health-score h3{

    font-size:1rem;

    color:var(--text-light);

}

.circle{

    width:170px;

    height:170px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:3rem;

    font-weight:700;

    color:white;

    position:relative;

    background:
        radial-gradient(circle,
        var(--surface) 58%,
        transparent 60%),

        conic-gradient(
        var(--accent) 0deg,
        var(--accent) 260deg,
        rgba(255,255,255,.08) 260deg);

    box-shadow:

        0 0 30px rgba(49,201,108,.18),

        inset 0 0 20px rgba(0,0,0,.3);

}

.circle::before{

    content:"";

    position:absolute;

    inset:10px;

    border-radius:50%;

    border:2px solid rgba(255,255,255,.05);

}

.circle span{

    position:relative;

    z-index:2;

}


/*=========================================================
    DASHBOARD GRID
==========================================================*/

.dashboard-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

}


/*=========================================================
    DASHBOARD CARD
==========================================================*/

.dashboard-card{

    background:var(--glass);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    padding:32px;

    transition:.35s;

    box-shadow:var(--shadow);

}

.dashboard-card:hover{

    transform:translateY(-8px);

    border-color:rgba(49,201,108,.35);

}

.card-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:28px;

}

.card-header h3{

    font-size:1.1rem;

}

.card-header span{

    font-size:1.6rem;

}

.dashboard-card h2{

    font-size:3rem;

    margin-bottom:18px;

    color:var(--accent);

}

.dashboard-card p{

    color:var(--text-light);

    margin-bottom:30px;

}


/*=========================================================
    PROGRESS BAR
==========================================================*/

.progress{

    width:100%;

    height:10px;

    border-radius:100px;

    background:rgba(255,255,255,.08);

    overflow:hidden;

}

.progress-fill{

    height:100%;

    border-radius:100px;

    background:linear-gradient(
        90deg,
        var(--accent),
        var(--accent-light)
    );

    transition:1s;

}


/*=========================================================
    STATUS CARD
==========================================================*/

.status-card{

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.status-pill{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:12px 28px;

    border-radius:999px;

    font-weight:700;

    margin-bottom:25px;

}

.status-pill.success{

    background:rgba(49,201,108,.18);

    color:var(--accent);

}

.status-pill.warning{

    background:rgba(255,178,61,.18);

    color:var(--warning);

}

.status-pill.danger{

    background:rgba(255,90,103,.18);

    color:var(--danger);

}


/*=========================================================
    COMPARISON
==========================================================*/

.comparison{

    position:relative;

}

.comparison-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:30px;

}

.compare-card{

    background:var(--glass);

    border-radius:24px;

    padding:35px;

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    transition:.35s;

}

.compare-card:hover{

    transform:translateY(-8px);

}

.compare-card h3{

    margin-bottom:30px;

    font-size:1.4rem;

}

.compare-card ul{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.compare-card li{

    display:flex;

    justify-content:space-between;

    padding-bottom:14px;

    border-bottom:1px solid rgba(255,255,255,.06);

    color:var(--text-light);

}

.compare-card strong{

    color:white;

}

.compare-card.highlight{

    border-color:rgba(49,201,108,.35);

    box-shadow:

        0 0 30px rgba(49,201,108,.15);

}

.compare-card.danger{

    border-color:rgba(255,90,103,.30);

}


/*=========================================================
    ECO TIPS
==========================================================*/

.tips{

    position:relative;

}

.tips-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.tip-card{

    padding:40px;

    background:var(--glass);

    border-radius:25px;

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    transition:.35s;

}

.tip-card:hover{

    transform:translateY(-10px);

    border-color:rgba(49,201,108,.35);

}

.tip-card span{

    width:70px;

    height:70px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:rgba(49,201,108,.15);

    font-size:2rem;

    margin-bottom:28px;

}

.tip-card h3{

    margin-bottom:18px;

    font-size:1.4rem;

}

.tip-card p{

    color:var(--text-light);

    line-height:1.8;

}


/*=========================================================
    METHODOLOGY
==========================================================*/

.methodology{

    position:relative;

}

.methodology-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(270px,1fr));

    gap:30px;

}

.method-card{

    background:var(--glass);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    border-radius:24px;

    padding:35px;

    transition:.35s;

}

.method-card:hover{

    transform:translateY(-10px);

    border-color:rgba(49,201,108,.30);

}

.method-icon{

    width:70px;

    height:70px;

    border-radius:18px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(49,201,108,.12);

    font-size:2rem;

    margin-bottom:25px;

}

.method-card h3{

    margin-bottom:18px;

    font-size:1.35rem;

}

.method-card p{

    color:var(--text-light);

}


/*=========================================================
FEATURES
==========================================================*/

.features-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

}

.features-grid article{

    padding:35px;

    border-radius:22px;

    background:var(--glass);

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

}

.features-grid article:hover{

    transform:translateY(-8px);

}

.features-grid h3{

    margin-bottom:18px;

}

.features-grid p{

    color:var(--text-light);

}


/*=========================================================
CTA
==========================================================*/

.cta{

    padding:80px 0;

}

.cta-box{

    background:linear-gradient(
        135deg,
        rgba(49,201,108,.18),
        rgba(255,255,255,.05)
    );

    border:1px solid rgba(255,255,255,.08);

    border-radius:30px;

    padding:70px;

    text-align:center;

    backdrop-filter:blur(20px);

}

.cta-box h2{

    font-size:clamp(2rem,5vw,3.2rem);

    margin-bottom:20px;

}

.cta-box p{

    max-width:650px;

    margin:0 auto 40px;

    color:var(--text-light);

}


/*=========================================================
FOOTER
==========================================================*/

.footer{

    padding:80px 0 30px;

    border-top:1px solid rgba(255,255,255,.08);

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:40px;

    margin-bottom:60px;

}

.footer h3{

    margin-bottom:18px;

}

.footer h4{

    margin-bottom:18px;

}

.footer p{

    color:var(--text-light);

}

.footer ul{

    display:flex;

    flex-direction:column;

    gap:12px;

}

.footer a{

    color:var(--text-light);

    transition:.3s;

}

.footer a:hover{

    color:var(--accent);

}

.footer-bottom{

    text-align:center;

    padding-top:30px;

    border-top:1px solid rgba(255,255,255,.08);

}

.footer-bottom p{

    color:var(--text-light);

}


/*=========================================================
SCROLL TO TOP
==========================================================*/

.scroll-top{

    position:fixed;

    right:35px;

    bottom:35px;

    width:58px;

    height:58px;

    border-radius:50%;

    background:var(--accent);

    color:white;

    font-size:1.4rem;

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:900;

}

.scroll-top.show{

    opacity:1;

    visibility:visible;

}


/*=========================================================
LOADER
==========================================================*/

.loader{

    position:fixed;

    inset:0;

    background:#081118;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    gap:25px;

    z-index:5000;

    transition:.5s;

}

.loader.hide{

    opacity:0;

    visibility:hidden;

}

.spinner{

    width:70px;

    height:70px;

    border-radius:50%;

    border:6px solid rgba(255,255,255,.08);

    border-top:6px solid var(--accent);

    animation:spin 1s linear infinite;

}


/*=========================================================
ANIMATIONS
==========================================================*/

.fade-up{

    opacity:0;

    transform:translateY(60px);

    transition:1s;

}

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}

@keyframes spin{

    to{

        transform:rotate(360deg);

    }

}

@keyframes float{

    0%{

        transform:translate(0,0);

    }

    50%{

        transform:translate(40px,-30px);

    }

    100%{

        transform:translate(0,0);

    }

}

@keyframes pulse{

    0%{

        box-shadow:0 0 0 0 rgba(49,201,108,.4);

    }

    70%{

        box-shadow:0 0 0 25px rgba(49,201,108,0);

    }

    100%{

        box-shadow:0 0 0 0 rgba(49,201,108,0);

    }

}


/*=========================================================
RESPONSIVE
==========================================================*/

@media(max-width:1200px){

.hero-grid{

grid-template-columns:1fr;

}

.hero-right{

order:-1;

}

.footer-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:992px){

.nav-links{

display:none;

}

.menu-btn{

display:flex;

}

.dashboard-controls{

justify-content:center;

}

.health-score{

width:100%;

}

.cta-box{

padding:50px 35px;

}

}

@media(max-width:768px){

section{

padding:80px 0;

}

.hero{

padding-top:140px;

}

.hero-buttons{

flex-direction:column;

}

.btn{

width:100%;

}

.stats-grid,

.dashboard-grid,

.comparison-grid,

.tips-grid,

.methodology-grid,

.features-grid{

grid-template-columns:1fr;

}

.footer-grid{

grid-template-columns:1fr;

text-align:center;

}

.scroll-top{

right:20px;

bottom:20px;

}

}

@media(max-width:576px){

.container{

width:94%;

}

.hero-card{

padding:30px;

min-height:auto;

}

.circle{

width:140px;

height:140px;

font-size:2.4rem;

}

.dashboard-card{

padding:25px;

}

.compare-card{

padding:25px;

}

.tip-card{

padding:30px;

}

.method-card{

padding:30px;

}

.cta-box{

padding:40px 25px;

}

}

@media(max-width:400px){

html{

font-size:15px;

}

.logo-text{

display:none;

}

.hero h1{

font-size:2.3rem;

}

.section-heading h2{

font-size:2rem;

}

.circle{

width:120px;

height:120px;

font-size:2rem;

}

}

.mobile-menu{

    position:fixed;

    top:95px;

    right:-320px;

    width:300px;

    height:calc(100vh - 95px);

    background:rgba(8,17,24,.97);

    backdrop-filter:blur(20px);

    transition:.4s;

    padding:40px;

    z-index:998;

}

.mobile-menu.show{

    right:0;

}

.mobile-menu ul{

    display:flex;

    flex-direction:column;

    gap:30px;

}

.mobile-menu a{

    font-size:1.1rem;

    color:white;

}

/*=========================================================
END OF FILE
==========================================================*/