/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Source Sans Pro',sans-serif;
    background:#fff;
    color:#333;
    overflow-x:hidden;
}

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

.header{
    background:#fff;
    border-bottom:1px solid #ececec;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:25px 80px;
    position:sticky;
    top:0;
    z-index:999;
}

.logo-section{
    display:flex;
    align-items:center;
    gap:25px;
}

.logos{
    display:flex;
    align-items:center;
    gap:12px;
}

.logos img{
    height:65px;
    width:auto;
}

.logo-text{
    display:flex;
    flex-direction:column;
}

.republic{
    font-size:24px;
    color:#8c8c8c;
    font-weight:400;
}

.ministry{
    font-size:24px;
    font-weight:700;
    text-transform:uppercase;

    background:linear-gradient(
        90deg,
        #127e76 0%,
        #1aa09f 100%
    );

    -webkit-background-clip:text;
    color:transparent;
}

/* =========================
   LANGUAGE
========================= */

.lang-selector{
    position:relative;
    display:flex;
    align-items:center;
    gap:10px;
    border:1px solid #e5e5e5;
    border-radius:30px;
    padding:12px 22px;
    cursor:pointer;
    background:#fff;
}

.lang-selector:hover{
    border-color:#127e76;
}

.lang-dropdown{
    position:absolute;
    top:100%;
    right:0;
    min-width:180px;
    background:white;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.10);
    display:none;
    overflow:hidden;
}

.lang-selector.open .lang-dropdown{
    display:block;
}

.lang-dropdown a{
    display:block;
    padding:14px 18px;
    color:#333;
    text-decoration:none;
}

.lang-dropdown a:hover{
    background:#f6f9fc;
}

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

.hero{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:60px;

    padding:80px;
    background:linear-gradient(
        180deg,
        #f5f9ff 0%,
        #ffffff 100%
    );
}

.hero-content{
    max-width:700px;
}

.hero-subtitle{
    color:#8d8d8d;
    font-size:24px;
    margin-bottom:20px;
}

.hero-title{
    font-size:56px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:30px;
}

.hero-title .orange{
    color:#ff951d;
}

.hero-title .green{
    background:linear-gradient(
        90deg,
        #127e76,
        #1aa09f
    );

    -webkit-background-clip:text;
    color:transparent;
}

.hero-description{
    font-size:24px;
    color:#555;
    line-height:1.7;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    gap:20px;
}

.btn-primary{
    display:inline-block;

    background:#127e76;
    color:white;

    padding:16px 40px;
    border-radius:40px;

    text-decoration:none;
    font-weight:700;

    transition:.3s;
}

.btn-primary:hover{
    transform:translateY(-3px);

    box-shadow:
    0 15px 35px rgba(18,126,118,.25);
}

.hero-image{
    display:flex;
    justify-content:center;
}

.hero-image img{
    width:100%;
    max-width:550px;
}

/* =========================
   ACTIONS
========================= */

.action-section{
    padding:0 80px 80px;
}

.action-container{
    max-width:1200px;
    margin:auto;

    background:linear-gradient(
        135deg,
        #127e76,
        #1aa09f
    );

    border-radius:30px;

    padding:60px;
}

.action-title{
    color:white;
    text-align:center;
    font-size:38px;
    margin-bottom:50px;
}

.action-cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.action-card{
    background:white;
    border-radius:25px;

    text-decoration:none;
    color:#333;

    padding:40px;

    text-align:center;

    transition:.35s;

    box-shadow:
    0 10px 25px rgba(0,0,0,.08);
}

.action-card:hover{
    transform:translateY(-10px);

    box-shadow:
    0 20px 40px rgba(0,0,0,.15);
}

.action-icon{
    width:90px;
    height:90px;

    margin:auto auto 25px;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    background:#f6fafb;
}

.action-icon i{
    font-size:42px;
    color:#ff951d;
}

.action-card h3{
    font-size:22px;
    margin-bottom:15px;
}

.action-card p{
    color:#666;
    font-size:15px;
}

/* =========================
   ALERT
========================= */

.alert-section{
    padding:0 80px 80px;
}

.alert-box{
    max-width:1200px;
    margin:auto;

    background:linear-gradient(
        135deg,
        #b91c1c,
        #dc2626
    );

    border-radius:20px;

    padding:35px;

    display:flex;
    gap:25px;
    align-items:center;

    color:white;

    box-shadow:
    0 10px 35px rgba(185,28,28,.30);
}

.alert-box i{
    font-size:48px;
}

.alert-box h3{
    margin-bottom:8px;
    font-size:24px;
}

.alert-box p{
    font-size:18px;
    font-weight:600;
}

/* =========================
   HELP
========================= */

.help-section{
    padding:80px;
    background:#f7f8fa;
}

.help-container{
    max-width:1000px;
    margin:auto;
    text-align:center;
}

.help-container h2{
    font-size:42px;
    margin-bottom:20px;
}

.help-container p{
    font-size:20px;
    line-height:1.8;
    color:#666;
}

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

footer{
    background:#127e76;
    color:white;
}

.footer-top{
    max-width:1200px;
    margin:auto;

    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:50px;

    padding:60px 40px;
}

.footer-logos{
    display:flex;
    gap:15px;
    margin-bottom:20px;
}

.footer-logos img{
    height:70px;
}

.footer-column h4{
    margin-bottom:20px;
    font-size:20px;
}

.footer-column ul{
    list-style:none;
}

.footer-column li{
    margin-bottom:10px;
}

.footer-column a{
    color:white;
    text-decoration:none;
}

.footer-column a:hover{
    text-decoration:underline;
}

.footer-bottom{
    background:#0e6c65;
    text-align:center;
    padding:18px;
}

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

@media(max-width:992px){

    .hero{
        grid-template-columns:1fr;
        text-align:center;
    }

    .hero-buttons{
        justify-content:center;
    }

    .footer-top{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-logos{
        justify-content:center;
    }
}

@media(max-width:768px){

    .header{
        padding:20px;
        flex-direction:column;
        gap:20px;
    }

    .hero{
        padding:50px 25px;
    }

    .hero-title{
        font-size:38px;
    }

    .hero-description{
        font-size:18px;
    }

    .action-section,
    .alert-section,
    .help-section{
        padding:25px;
    }

    .action-container{
        padding:35px 20px;
    }

    .action-title{
        font-size:28px;
    }

    .alert-box{
        flex-direction:column;
        text-align:center;
    }

    .alert-box i{
        font-size:40px;
    }

    .help-container h2{
        font-size:30px;
    }

    .logos img{
        height:50px;
    }

    .republic,
    .ministry{
        font-size:18px;
    }
}