:root {
    --green: #168A12;
    --green-dark: #0B5F09;
    --yellow: #F4D000;
    --red: #E60000;
    --white: #ffffff;
    --light: #f6f8f5;
    --dark: #18212f;
    --gray: #64748b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: var(--dark);
    background: var(--white);
}

a {
    text-decoration: none;
}

.topbar {
    background: var(--green-dark);
    color: white;
    font-size: 14px;
    padding: 8px 0;
}

.topbar i {
    color: var(--yellow);
    margin-right: 6px;
}

.main-navbar {
    background: white;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.logo {
    width: 62px;
    height: 62px;
    object-fit: contain;
    margin-right: 12px;
}

.navbar-brand strong {
    display: block;
    color: var(--green-dark);
    font-size: 25px;
    font-weight: 900;
    line-height: 1;
}

.navbar-brand small {
    color: var(--red);
    font-weight: 700;
    font-size: 12px;
}

.nav-link {
    font-weight: 700;
    color: var(--dark);
    margin: 0 4px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--green);
}

.btn-adhesion,
.btn-green {
    background: var(--green);
    color: white;
    font-weight: 800;
    border-radius: 50px;
    padding: 10px 24px;
}

.btn-adhesion:hover,
.btn-green:hover {
    background: var(--green-dark);
    color: white;
}

.hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(11,95,9,.95), rgba(22,138,18,.82)), url('../images/banner.jpeg') center/cover;
    color: white;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.badge-party {
    display: inline-block;
    background: var(--yellow);
    color: var(--green-dark);
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 900;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 15px;
}

.hero h2 {
    font-size: 70px;
    font-weight: 900;
    color: var(--yellow);
}

.hero p {
    font-size: 25px;
    font-weight: 800;
    letter-spacing: 2px;
}

.hero-buttons {
    margin-top: 30px;
}

.btn-yellow {
    background: var(--yellow);
    color: var(--green-dark);
    font-weight: 900;
    border-radius: 50px;
    padding: 13px 28px;
    margin-right: 10px;
}

.btn-yellow:hover {
    background: #ffe352;
    color: var(--green-dark);
}

.btn-outline-light {
    border-radius: 50px;
    padding: 13px 28px;
    font-weight: 800;
}

.hero-logo-box {
    background: rgba(255,255,255,.96);
    padding: 35px;
    border-radius: 30px;
    box-shadow: 0 25px 55px rgba(0,0,0,.25);
}

.hero-logo-box img {
    width: 100%;
    max-width: 330px;
}

.section {
    padding: 90px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 45px;
}

.section-title span {
    color: var(--red);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title h2 {
    color: var(--green-dark);
    font-weight: 900;
    margin-top: 10px;
}

.about-short p {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.8;
}

.info-card {
    background: white;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 20px 50px rgba(0,0,0,.09);
    border-top: 8px solid var(--green);
}

.info-card h4 {
    font-weight: 900;
    color: var(--green-dark);
    margin-bottom: 20px;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card li {
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
}

.values-section {
    background: linear-gradient(135deg, var(--green-dark), var(--green));
}

.section-title.light span,
.section-title.light h2 {
    color: white;
}

.value-card {
    background: white;
    padding: 35px 25px;
    border-radius: 24px;
    text-align: center;
    height: 100%;
    transition: .3s;
}

.value-card:hover {
    transform: translateY(-8px);
}

.value-card i {
    width: 70px;
    height: 70px;
    background: var(--yellow);
    color: var(--green-dark);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: auto;
    font-size: 28px;
    margin-bottom: 20px;
}

.value-card h5 {
    font-weight: 900;
    color: var(--green-dark);
}

.leader-card {
    display: flex;
    gap: 25px;
    align-items: center;
    background: white;
    border-radius: 25px;
    padding: 25px;
    box-shadow: 0 20px 45px rgba(0,0,0,.08);
    height: 100%;
}

.leader-card img {
    width: 140px;
    height: 140px;
    border-radius: 20px;
    object-fit: cover;
    background: #eee;
}

.leader-card h4 {
    font-weight: 900;
    color: var(--green-dark);
}

.leader-card span {
    color: var(--red);
    font-weight: 800;
}

.leader-card p {
    color: var(--gray);
    margin: 10px 0;
}

.leader-card a {
    font-weight: 900;
    color: var(--green);
}

.stats {
    background: var(--light);
}

.stats h3 {
    color: var(--red);
    font-size: 55px;
    font-weight: 900;
}

.stats p {
    font-weight: 800;
    color: var(--green-dark);
}

.news-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0,0,0,.08);
    height: 100%;
}

.news-card img {
    height: 220px;
    width: 100%;
    object-fit: cover;
    background: #eee;
}

.news-card div {
    padding: 25px;
}

.news-card span {
    color: var(--red);
    font-weight: 900;
}

.news-card h5 {
    color: var(--green-dark);
    font-weight: 900;
    margin: 12px 0;
}

.news-card p {
    color: var(--gray);
}

.news-card a {
    color: var(--green);
    font-weight: 900;
}

.adhesion-cta {
    background: linear-gradient(135deg, rgba(230,0,0,.95), rgba(22,138,18,.95));
    color: white;
    padding: 80px 0;
}

.adhesion-cta h2 {
    font-weight: 900;
    font-size: 42px;
}

.adhesion-cta p {
    font-size: 18px;
    margin-bottom: 30px;
}

.footer {
    background: #061905;
    color: white;
    padding: 70px 0 20px;
}

.footer-logo {
    width: 90px;
    background: white;
    border-radius: 50%;
    padding: 6px;
    margin-bottom: 15px;
}

.footer h5 {
    color: var(--yellow);
    font-weight: 900;
    margin-bottom: 20px;
}

.footer a {
    display: block;
    color: #d1d5db;
    margin-bottom: 10px;
}

.footer p {
    color: #d1d5db;
}

.footer i {
    color: var(--yellow);
    margin-right: 8px;
}

.copyright {
    border-top: 1px solid rgba(255,255,255,.12);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: #d1d5db;
}

@media(max-width: 991px) {
    .hero {
        min-height: auto;
        padding: 80px 0;
        text-align: center;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero h2 {
        font-size: 52px;
    }

    .hero p {
        font-size: 18px;
    }

    .hero-logo-box {
        margin-top: 35px;
    }

    .leader-card {
        flex-direction: column;
        text-align: center;
    }

    .topbar .container {
        flex-direction: column;
        gap: 5px;
    }
}
.page-hero {
    background: linear-gradient(135deg, rgba(11,95,9,.95), rgba(22,138,18,.88)), url('../images/banner.jpeg') center/cover;
    padding: 120px 0;
    text-align: center;
    color: white;
}

.page-hero span {
    color: var(--yellow);
    font-weight: 900;
    letter-spacing: 3px;
}

.page-hero h1 {
    font-size: 55px;
    font-weight: 900;
    margin: 15px 0;
}

.page-hero p {
    font-size: 20px;
    font-weight: 700;
}

.official-logo-card {
    background: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 25px 55px rgba(0,0,0,.1);
}

.official-logo-card img {
    max-width: 260px;
    width: 100%;
}

.official-logo-card h3 {
    color: var(--red);
    font-weight: 900;
    margin-top: 20px;
}

.official-logo-card p {
    color: var(--green-dark);
    font-weight: 900;
}

.party-text-card {
    background: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 25px 55px rgba(0,0,0,.08);
    border-left: 8px solid var(--green);
}

.party-text-card h3 {
    color: var(--green-dark);
    font-weight: 900;
    margin-bottom: 20px;
}

.party-text-card p {
    color: var(--gray);
    font-size: 17px;
    line-height: 1.8;
}

.party-identity {
    background: var(--light);
}

.identity-box,
.vision-card,
.org-card {
    background: white;
    border-radius: 25px;
    padding: 35px;
    height: 100%;
    box-shadow: 0 20px 45px rgba(0,0,0,.08);
    transition: .3s;
}

.identity-box:hover,
.vision-card:hover,
.org-card:hover {
    transform: translateY(-7px);
}

.identity-box i,
.vision-card i,
.org-card i {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--yellow);
    color: var(--green-dark);
    font-size: 28px;
    margin-bottom: 20px;
}

.identity-box h4,
.vision-card h3,
.org-card h4 {
    color: var(--green-dark);
    font-weight: 900;
}

.identity-box p,
.vision-card p,
.org-card p {
    color: var(--gray);
    line-height: 1.7;
}

.vision-card {
    border-top: 8px solid var(--green);
}

.vision-card.mission {
    border-top-color: var(--red);
}

.organisation-section {
    background: var(--light);
}

@media(max-width: 768px) {
    .page-hero {
        padding: 80px 0;
    }

    .page-hero h1 {
        font-size: 38px;
    }

    .party-text-card {
        padding: 28px;
    }
}
.pro-dropdown {
    border: none;
    border-radius: 18px;
    padding: 12px;
    min-width: 260px;
    box-shadow: 0 20px 45px rgba(0,0,0,.16);
    margin-top: 18px;
}

.pro-dropdown::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 32px;
    width: 18px;
    height: 18px;
    background: #fff;
    transform: rotate(45deg);
}

.pro-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 12px;
    padding: 12px 14px;
    font-weight: 800;
    color: var(--dark);
}

.pro-dropdown .dropdown-item i {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(22,138,18,.10);
    color: var(--green);
}

.pro-dropdown .dropdown-item:hover {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: white;
}

.pro-dropdown .dropdown-item:hover i {
    background: var(--yellow);
    color: var(--green-dark);
}
.president-section {
    background: var(--light);
}

.president-wrapper {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 35px;
    align-items: center;
}

.president-image-box {
    height: 520px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,.18);
    position: relative;
}

.president-image-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.35), transparent);
}

.president-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.president-content-box {
    background: white;
    border-radius: 30px;
    padding: 45px;
    box-shadow: 0 25px 60px rgba(0,0,0,.12);
    border-left: 8px solid var(--green);
    margin-left: -80px;
    position: relative;
    z-index: 5;
}

.leader-badge {
    display: inline-block;
    background: rgba(22,138,18,.12);
    color: var(--green-dark);
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 900;
    margin-bottom: 18px;
}

.president-content-box h2 {
    color: var(--green-dark);
    font-weight: 900;
    font-size: 40px;
}

.president-content-box h5 {
    color: var(--red);
    font-weight: 800;
    margin-bottom: 22px;
}

.president-content-box p {
    color: var(--gray);
    font-size: 17px;
    line-height: 1.8;
}

@media(max-width: 991px) {
    .president-wrapper {
        grid-template-columns: 1fr;
    }

    .president-content-box {
        margin-left: 0;
        padding: 30px;
    }

    .president-image-box {
        height: 420px;
    }

    .president-content-box h2 {
        font-size: 30px;
    }
}

.message-president {
    max-width: 1000px;
    margin: auto;
    background: white;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(0,0,0,.12);
    border-top: 8px solid var(--green);
    text-align: center;
    position: relative;
}

.message-president::before {
    content: "\201C";
    position: absolute;
    top: 20px;
    left: 40px;
    font-size: 120px;
    color: rgba(22,138,18,.12);
    font-family: serif;
    line-height: 1;
}

.message-president p {
    font-size: 28px;
    line-height: 1.8;
    font-weight: 600;
    color: #1e293b;
}

.message-president h4 {
    margin-top: 30px;
    color: var(--green-dark);
    font-weight: 900;
}

.message-president span {
    color: var(--red);
    font-weight: 700;
}
.president-priorities {
    background: linear-gradient(
        135deg,
        var(--green-dark),
        var(--green)
    );
}

.priority-card {
    background: white;
    border-radius: 25px;
    padding: 40px 25px;
    text-align: center;
    height: 100%;
    transition: .35s;
    box-shadow: 0 20px 40px rgba(0,0,0,.12);
}

.priority-card:hover {
    transform: translateY(-12px);
}

.priority-card i {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: auto;
    margin-bottom: 20px;
    background: var(--yellow);
    color: var(--green-dark);
    font-size: 35px;
}

.priority-card h5 {
    font-size: 24px;
    font-weight: 900;
    color: var(--green-dark);
}

.priority-card p {
    color: #64748b;
    margin-top: 15px;
    line-height: 1.8;
}
.president-priorities {
    background: linear-gradient(135deg, #064d05, #12820f);
    padding: 90px 0;
}

.president-priorities .section-title span {
    color: var(--yellow);
    font-weight: 900;
}

.president-priorities .section-title h2 {
    color: #fff;
    font-weight: 900;
}
.program-intro {
    max-width: 950px;
    margin: auto;
    text-align: center;
}

.program-intro p {
    font-size: 19px;
    color: var(--gray);
    line-height: 1.8;
}

.program-card {
    background: white;
    border-radius: 25px;
    padding: 35px;
    height: 100%;
    box-shadow: 0 20px 45px rgba(0,0,0,.08);
    border-top: 6px solid var(--green);
    transition: .35s;
}

.program-card:hover {
    transform: translateY(-8px);
    border-top-color: var(--red);
}

.program-card i {
    width: 75px;
    height: 75px;
    background: var(--yellow);
    color: var(--green-dark);
    display: grid;
    place-items: center;
    border-radius: 22px;
    font-size: 30px;
    margin-bottom: 20px;
}

.program-card h4 {
    color: var(--green-dark);
    font-weight: 900;
}

.program-card p {
    color: var(--gray);
    line-height: 1.8;
}

.program-focus {
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    color: white;
}

.program-focus-box {
    background: rgba(255,255,255,.10);
    padding: 45px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,.18);
}

.program-focus-box span {
    color: var(--yellow);
    font-weight: 900;
    text-transform: uppercase;
}

.program-focus-box h2 {
    font-weight: 900;
    margin: 15px 0;
}

.program-focus-box p {
    line-height: 1.8;
    color: rgba(255,255,255,.9);
}

.program-focus-list {
    display: grid;
    gap: 18px;
}

.program-focus-list div {
    background: white;
    color: var(--green-dark);
    padding: 20px 25px;
    border-radius: 18px;
    font-weight: 900;
    display: flex;
    gap: 14px;
    align-items: center;
    box-shadow: 0 15px 35px rgba(0,0,0,.15);
}

.program-focus-list i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--yellow);
    color: var(--green-dark);
}
.news-filter-box {
    background: white;
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 20px 45px rgba(0,0,0,.08);
    border-left: 7px solid var(--green);
}

.news-filter-box label {
    font-weight: 900;
    color: var(--green-dark);
    margin-bottom: 8px;
}

.news-filter-box .form-control {
    height: 52px;
    border-radius: 14px;
    border: 1px solid #dbe3df;
    font-weight: 600;
}

.news-card-page {
    transition: .35s;
}

.news-card-page:hover {
    transform: translateY(-8px);
}

.news-meta {
    color: var(--gray);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 14px;
}

.news-meta i {
    color: var(--green);
    margin-right: 6px;
}

.empty-news {
    background: white;
    border-radius: 25px;
    text-align: center;
    padding: 70px 20px;
    box-shadow: 0 20px 45px rgba(0,0,0,.08);
}

.empty-news i {
    font-size: 60px;
    color: var(--yellow);
    margin-bottom: 20px;
}

.empty-news h3 {
    color: var(--green-dark);
    font-weight: 900;
}
.article-card{
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.article-image{
    width:100%;
    height:500px;
    object-fit:cover;
}

.article-meta{
    padding:25px 35px 0;
    display:flex;
    gap:20px;
    color:#64748b;
    font-weight:700;
}

.article-meta i{
    color:var(--green);
}

.article-card h2{
    padding:10px 35px;
    font-weight:900;
    color:var(--green-dark);
}

.article-content{
    padding:0 35px 35px;
    line-height:2;
    font-size:17px;
}

.sidebar-news{
    background:#fff;
    border-radius:25px;
    padding:25px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.sidebar-news h4{
    color:var(--green-dark);
    font-weight:900;
    margin-bottom:25px;
}

.sidebar-item{
    display:flex;
    gap:15px;
    margin-bottom:20px;
    color:#1e293b;
}

.sidebar-item img{
    width:90px;
    height:70px;
    object-fit:cover;
    border-radius:12px;
}

.sidebar-item h6{
    margin-bottom:5px;
    font-weight:800;
}

.sidebar-item small{
    color:#64748b;
}
.event-card {
    background: white;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0,0,0,.08);
    height: 100%;
    transition: .35s;
}

.event-card:hover {
    transform: translateY(-8px);
}

.event-image {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 13px;
}

.event-programme {
    background: var(--yellow);
    color: var(--green-dark);
}

.event-termine {
    background: var(--green);
    color: white;
}

.event-annule {
    background: var(--red);
    color: white;
}

.event-content {
    padding: 25px;
}

.event-date-box {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: var(--gray);
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 15px;
}

.event-date-box i {
    color: var(--green);
    margin-right: 5px;
}

.event-content h4 {
    color: var(--green-dark);
    font-weight: 900;
    margin-bottom: 12px;
}

.event-content p {
    color: var(--gray);
    line-height: 1.7;
}

.event-location {
    color: var(--dark);
    font-weight: 800;
    margin: 15px 0;
}

.event-location i {
    color: var(--red);
    margin-right: 6px;
}

.event-link {
    color: var(--green);
    font-weight: 900;
}

@media(max-width: 768px) {
    .event-date-box {
        flex-direction: column;
    }
}
.event-detail-card{
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(0,0,0,.08);
}

.event-detail-image{
    width:100%;
    height:520px;
    object-fit:cover;
}

.event-detail-body{
    padding:35px;
}

.event-info-bar{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    margin-bottom:25px;
    color:#64748b;
    font-weight:700;
}

.event-info-bar i{
    color:var(--green);
    margin-right:6px;
}

.event-detail-body h2{
    color:var(--green-dark);
    font-weight:900;
    margin-bottom:25px;
}

.event-description{
    line-height:2;
    font-size:17px;
    color:#334155;
}

.event-sidebar{
    background:#fff;
    padding:25px;
    border-radius:25px;
    box-shadow:0 20px 45px rgba(0,0,0,.08);
    margin-bottom:25px;
}

.event-sidebar h4{
    color:var(--green-dark);
    font-weight:900;
    margin-bottom:20px;
}

.event-sidebar-item{
    display:flex;
    gap:15px;
    margin-bottom:18px;
    color:#1e293b;
}

.event-sidebar-item img{
    width:90px;
    height:70px;
    border-radius:12px;
    object-fit:cover;
}

.event-sidebar-item h6{
    font-weight:800;
    margin-bottom:5px;
}

.event-sidebar-item small{
    color:#64748b;
}

.event-contact-box{
    background:#fff;
    border-radius:25px;
    padding:30px;
    box-shadow:0 20px 45px rgba(0,0,0,.08);
    border-top:6px solid var(--green);
}

.event-contact-box h5{
    color:var(--green-dark);
    font-weight:900;
}

.event-contact-box p{
    color:#64748b;
    margin:15px 0;
}

@media(max-width:991px){

    .event-detail-image{
        height:300px;
    }

    .event-info-bar{
        flex-direction:column;
        gap:10px;
    }

}
.gallery-filter{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    justify-content:center;
    margin-bottom:50px;
}

.gallery-filter a{
    padding:12px 22px;
    border-radius:50px;
    background:#fff;
    color:var(--green-dark);
    font-weight:800;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.gallery-filter a.active,
.gallery-filter a:hover{
    background:var(--green);
    color:#fff;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(320px,1fr));
    gap:30px;
}

.gallery-card{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
    transition:.35s;
}

.gallery-card:hover{
    transform:translateY(-8px);
}

.gallery-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.gallery-info{
    padding:25px;
}

.gallery-info span{
    color:var(--red);
    font-weight:800;
    font-size:13px;
    text-transform:uppercase;
}

.gallery-info h5{
    color:var(--green-dark);
    font-weight:900;
    margin-top:10px;
}

.gallery-info p{
    color:#64748b;
    margin-top:10px;
    line-height:1.7;
}
.adhesion-container{
    background:#fff;
    padding:50px;
    border-radius:30px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.adhesion-container label{
    font-weight:800;
    color:var(--green-dark);
    margin-bottom:8px;
}

.adhesion-container .form-control{
    border-radius:15px;
    min-height:52px;
}

.adhesion-container textarea.form-control{
    min-height:120px;
}

@media(max-width:768px){

    .adhesion-container{
        padding:25px;
    }

}
.contact-info-box,
.contact-form-box{
    background:#fff;
    padding:35px;
    border-radius:25px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.contact-item{
    display:flex;
    gap:18px;
    margin-bottom:25px;
}

.contact-item i{
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--green);
    color:#fff;
    font-size:22px;
}

.contact-item h5{
    font-weight:900;
    color:var(--green-dark);
    margin-bottom:5px;
}

.contact-item p{
    margin:0;
    color:#64748b;
}

.social-section{
    margin-top:30px;
}

.social-section h4{
    font-weight:900;
    color:var(--green-dark);
    margin-bottom:20px;
}

.social-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
}

.social-card{
    height:100px;
    border-radius:20px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-weight:800;
    transition:.35s;
}

.social-card:hover{
    transform:translateY(-6px);
}

.social-card i{
    font-size:28px;
    margin-bottom:8px;
}

.facebook{background:#1877F2;}
.instagram{background:#E4405F;}
.youtube{background:#FF0000;}
.tiktok{background:#000000;}
.whatsapp{background:#25D366;}
.gmail{background:#EA4335;}

.contact-form-box label{
    font-weight:800;
    color:var(--green-dark);
    margin-bottom:8px;
}

.contact-form-box .form-control{
    min-height:52px;
    border-radius:14px;
}

.contact-form-box textarea.form-control{
    min-height:150px;
}

@media(max-width:768px){

    .social-grid{
        grid-template-columns:repeat(2,1fr);
    }

}