body {
    font-family: "Segoe UI", sans-serif;
    background: #fff;
    scroll-behavior: smooth;
    padding-top: 110px; /* supaya tidak ketutup header */
}

.text-justify {
    text-align: justify;
    text-justify: inter-word;
}

/* default abu */
.pagination .page-link {
    color: #6c757d;
    background-color: #fff;
    border: 1px solid #dee2e6;
    transition: 0.3s;
}

/* hover */
.pagination .page-link:hover {
    color: #fff;
    background-color: #198754;
    border-color: #198754;
}

/* aktif (yang diklik) */
.pagination .page-item.active .page-link {
    color: #fff;
    background-color: #198754;
    border-color: #198754;
}

/* focus biar gak biru */
.pagination .page-link:focus {
    box-shadow: none;
}
/* TOPBAR BASE */
.topbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;

    background: #ffffff;
    border-bottom: 1px solid #e5e7eb; /* abu solid elegan */
}

/* TEXT STYLE */
.topbar-left span {
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

/* ICON KIRI */
.topbar i {
    font-size: 13px;
    color: #1b5e20;
}

/* GARIS PEMBATAS (FIX TRANSPARAN) */
.divider {
    width: 1px;
    height: 14px;
    background: #d1d5db; /* abu jelas */
}

/* ICON SOSIAL */
/* TOPBAR BASE */
.topbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;

    background: #ffffff;
    border-bottom: 1px solid #e5e7eb; /* abu solid elegan */
}

/* TEXT STYLE */
.topbar-left span {
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

/* ICON KIRI */
.topbar i {
    font-size: 13px;
    color: #1b5e20;
}

/* GARIS PEMBATAS (FIX TRANSPARAN) */
.divider {
    width: 1px;
    height: 14px;
    background: #d1d5db; /* abu jelas */
}

/* ICON SOSIAL */
.topbar-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #6c757d;
    transition: all 0.3s ease;
}

.topbar-icon i {
    color: #1b5e20;
}

.topbar-icon:hover {
    background: linear-gradient(135deg, #198754, #28a745);
    color: #fff;
    transform: translateY(-2px);
}

.topbar-icon:hover i {
    color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
    .topbar-left {
        display: none; /* biar clean di HP */
    }
}

/* NAVBAR IMPROVED */
.navbar {
    transition: 0.3s;
    background: #ffffff; /* tidak transparan */
    padding: 12px 0;
    position: fixed;
    top: 32px;
    width: 100%;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-top: 7px;
}
.navbar-brand {
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 1px;
}
.nav-link {
    position: relative;
    font-weight: 600;
    margin: 0 12px;
    color: #333;
}
.nav-link:hover {
    color: #1b5e20;
}
.nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #198754, #28a745);
    left: 0;
    bottom: -6px;
    transition: 0.3s;
}
.nav-link:hover::after {
    width: 100%;
}

/* Hilangkan garis bawah khusus pada menu Vocabulary */
.nav-item.dropdown .nav-link.dropdown-toggle::after {
    margin-left: 4px;
    transition: transform 0.3s ease;
    border-top: 0.3em solid currentColor;
}

/* Override underline bawaan .nav-link::after */
.nav-item.dropdown .nav-link.dropdown-toggle::before {
    display: none;
}

.nav-item.dropdown .nav-link.dropdown-toggle::after {
    /* tetap tampilkan icon panah Bootstrap */
    border-top: 0.3em solid currentColor;
}

/* Hilangkan garis bawah animasi pada menu Vocabulary */
.nav-item.dropdown .nav-link.dropdown-toggle::after,
.nav-item.dropdown .nav-link.dropdown-toggle.active::after,
.nav-item.dropdown .nav-link.dropdown-toggle.show::after {
    /* hanya panah, tanpa underline */
}

/* PENTING: nonaktifkan pseudo underline dari .nav-link::after */
.nav-item.dropdown .nav-link.dropdown-toggle::after {
    /* panah tetap */
}

.nav-item.dropdown .nav-link.dropdown-toggle::before {
    display: none !important;
}

/* Gunakan pseudo element terpisah untuk underline semua nav-link kecuali dropdown */
.nav-link:not(.dropdown-toggle)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #198754, #28a745);
    transition: width 0.3s ease;
}

.nav-link:not(.dropdown-toggle):hover::after,
.nav-link:not(.dropdown-toggle).active::after {
    width: 100%;
}

/* Hapus underline dari dropdown toggle */
.nav-link.dropdown-toggle::after {
    border-top: 0.3em solid currentColor;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    position: static !important;
}
/* =========================
   ACTIVE ITEM DROPDOWN HIJAU
========================= */

/* Saat item dropdown aktif (Bootstrap menambahkan class .active) */
.vocabulary-dropdown .dropdown-item.active,
.vocabulary-dropdown .dropdown-item:active {
    background: linear-gradient(135deg, #198754, #28a745);
    color: #ffffff !important;
    border-radius: 12px;
}

/* Warna icon saat aktif */
.vocabulary-dropdown .dropdown-item.active i,
.vocabulary-dropdown .dropdown-item:active i {
    color: #ffffff !important;
}

/* Hover setelah aktif */
.vocabulary-dropdown .dropdown-item.active:hover {
    background: linear-gradient(90deg, #145a1b, #1b5e20) !important;
    color: #ffffff !important;
}

/* Fokus keyboard */
.vocabulary-dropdown .dropdown-item:focus {
    background: linear-gradient(135deg, #198754, #28a745);
    color: #ffffff !important;
}

/* Icon saat focus */
.vocabulary-dropdown .dropdown-item:focus i {
    color: #ffffff !important;
}
/* =========================
   MOBILE DROPDOWN VOCABULARY
   Tampilan lebih rapi seperti accordion
========================= */
@media (max-width: 991.98px) {
    /* Dropdown wrapper */
    .nav-item.dropdown {
        width: 100%;
        text-align: center;
    }

    /* Link Vocabulary */
    .nav-item.dropdown .nav-link.dropdown-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        width: auto;
        margin: 0 auto;
        padding: 10px 0;
        font-weight: 600;
    }

    /* Dropdown menu */
    .nav-item.dropdown .dropdown-menu {
        position: static !important;
        transform: none !important;
        float: none !important;
        width: 100%;
        min-width: 100%;
        margin-top: 10px !important;
        padding: 8px !important;
        border: none !important;
        border-radius: 16px !important;
        background: #ffffff;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        max-height: 260px; /* tidak terlalu tinggi */
        overflow-y: auto;
    }

    /* Sembunyikan jika belum dibuka */
    .nav-item.dropdown .dropdown-menu:not(.show) {
        display: none;
    }

    /* Tampilkan saat dibuka */
    .nav-item.dropdown .dropdown-menu.show {
        display: block;
        animation: dropdownFade 0.25s ease;
    }

    /* Header kategori */
    .vocabulary-dropdown li:first-child {
        text-align: left;
        padding-bottom: 4px;
    }

    /* Item dropdown */
    .vocabulary-dropdown .dropdown-item {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 10px 12px;
        font-size: 14px;
        font-weight: 500;
        text-align: left;
        border-radius: 10px;
    }

    /* Hover */
    .vocabulary-dropdown .dropdown-item:hover {
        transform: none;
        background: #f1f8f4;
    }

    /* "Semua Vocabulary" */
    .vocabulary-dropdown .dropdown-item.fw-semibold {
        margin-bottom: 4px;
    }

    /* Scrollbar tipis */
    .vocabulary-dropdown::-webkit-scrollbar {
        width: 4px;
    }

    .vocabulary-dropdown::-webkit-scrollbar-thumb {
        background: rgba(27, 94, 32, 0.4);
        border-radius: 999px;
    }

    /* Search box */
    .cari {
        margin-top: 12px;
    }
}

.carousel-img {
    width: 100%;
}

.carousel-img img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto !important;
}

/* TABLET */
@media (max-width: 768px) {
    .carousel-img {
        height: 50vh;
    }
}

/* HP KECIL (< 400px) */
@media (max-width: 400px) {
    .carousel-img {
        height: auto !important; /* 🔥 paksa ikut gambar */
        overflow: visible;
    }

    .carousel-img img {
        width: 100%;
        height: auto !important; /* 🔥 jangan dipaksa tinggi */
        object-fit: contain !important;
    }

    .carousel-item {
        height: auto !important;
    }
}
.about-feature {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
}

/* BOX KANAN */
.export-box {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* ITEM LIST */
.export-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    transition: 0.3s;
}

.export-item:last-child {
    border-bottom: none;
}

.export-item span {
    color: #666;
}

.export-item strong {
    font-size: 14px;
}

/* HOVER EFFECT */
.export-item:hover {
    transform: translateX(5px);
    color: #1b5e20;
}

/* IMAGE */
#export-focus img {
    transition: 0.4s;
}

#export-focus img:hover {
    transform: scale(1.05);
}

/* BUTTON */
.btn-dark {
    background: #111;
    border: none;
}

.btn-dark:hover {
    background: #333;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    #export-focus img {
        height: 300px !important;
    }
}

.about-feature:hover {
    background: #e9f5ec;
}

.about-feature h4 {
    color: #1b5e20;
    font-weight: 700;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.about-grid img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
}

.about-card-modern {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.about-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* CARD visi misi*/
.vm-section {
    padding: 30px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.vm-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    height: 100%;
    position: relative;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.vm-card::before {
    content: "";
    position: absolute;
    top: 25px;
    left: 25px;
    width: 40px;
    height: 2px;
    background: #111;
    transition: 0.3s;
}

.vm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.vm-card:hover::before {
    width: 70px;
}

/* TEXT */
.vm-title {
    font-size: 20px;
    font-weight: 600;
    margin-top: 25px;
}

.vm-text {
    color: #6e6e73;
    line-height: 1.9;
    margin-top: 10px;

    /* JUSTIFY */
    text-align: justify;
    text-justify: inter-word;
    letter-spacing: 0.2px;
}

.vm-list li {
    margin-bottom: 12px;

    /* JUSTIFY */
    text-align: justify;
    text-justify: inter-word;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .vm-card {
        padding: 30px;
    }

    .section-title {
        font-size: 28px;
    }
}

/* HERO */
.hero {
    position: relative;
    height: 100vh;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: center/cover no-repeat;
}
.hero::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}
.hero-content {
    position: relative;
    z-index: 2;
}

.carousel-item img {
    height: 100vh;
    object-fit: cover;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 12px;
}

.carousel-caption h5 {
    font-size: 24px;
    font-weight: 600;
}

.carousel-caption p {
    font-size: 16px;
}

.btn-main {
    background: linear-gradient(135deg, #198754, #28a745);
    color: #fff;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
}

.section-title {
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow:
        0 2px 10px rgba(0, 0, 0, 0.03),
        0 8px 30px rgba(0, 0, 0, 0.04);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.05),
        0 15px 40px rgba(0, 0, 0, 0.06);
}

/* IMAGE */
.blog-img {
    height: 180px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.blog-card:hover img {
    transform: scale(1.08);
}

/* CONTENT */
.blog-content {
    padding: 20px;
}

.blog-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-content p {
    font-size: 14px;
    color: #666;
}

/* META */
.blog-meta {
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
}

.blog-meta span {
    margin-right: 10px;
}

/* LINK */
.blog-content a {
    font-size: 13px;
    font-weight: 600;
    color: #1b5e20;
    text-decoration: none;
}

.blog-content a:hover {
    color: #1b5e20;
}

.sidebar-box {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow:
        0 2px 10px rgba(0, 0, 0, 0.03),
        0 8px 25px rgba(0, 0, 0, 0.04);
    transition: 0.3s;
}

.sidebar-box:hover {
    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.05),
        0 15px 35px rgba(0, 0, 0, 0.06);
}

.sidebar-box h5 {
    font-weight: 700;
    margin-bottom: 15px;
}

/* SIDEBAR LINKS */
.sidebar-box p {
    display: block;
    padding: 10px;
    margin-bottom: 8px;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: 0.3s;
}

.sidebar-box p:hover {
    background: linear-gradient(135deg, #198754, #28a745);
    color: #fff;
    transform: translateX(5px);
}

/* RECENT POST */
.recent-post {
    display: flex;
    align-items: center;
    gap: 1px;
}

.recent-img {
    width: 80px !important;
    height: 80px !important;
    min-width: 80px;
    min-height: 80px;
    object-fit: contain !important;
    object-position: center;
    border-radius: 3px;
    display: block;
    background: #fff;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}
.recent-post:hover {
    background: #f8f9fa;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
}

.btn-read {
    transition: 0.2s ease;
}

/* Hover */
.btn-read:hover {
    background-color: #198754 !important;
    color: #fff !important;
}

/* Klik & focus */
.btn-read:active,
.btn-read:focus,
.btn-read.active {
    background-color: #198754 !important;
    color: #fff !important;
    border-color: #198754 !important;
    box-shadow: none !important;
}

.recent-post img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 10px;
}

.recent-post a.recent-link {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    display: block;
    padding: 6px;
    border-radius: 8px;
    transition: 0.3s;
}

.recent-post a.recent-link:hover {
    background: linear-gradient(135deg, #198754, #28a745);
    color: #fff;
}

/* PAGINATION */
.pagination {
    justify-content: center;
}

.pagination .page-link {
    border: none;
    margin: 0 5px;
    border-radius: 10px;
    color: #333;
}

.pagination .page-link:hover {
    background: linear-gradient(135deg, #198754, #28a745);
    color: #fff;
}

/* TITLE */
.gallery-subtitle {
    color: #1b5e20;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
}

.product-item {
    position: relative;
}

.product-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}
.product-image-wrapper img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: 0.5s;
}
.product-image-wrapper:hover img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #198754, #28a745);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
}

.product-text h3 {
    font-weight: 700;
    margin-bottom: 15px;
}
.product-text p {
    color: #666;
    margin-bottom: 20px;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.spec-grid div {
    background: #f8f9fa;
    padding: 5px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.product-item::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: #eee;
}
.product-item:last-child::after {
    display: none;
}

.contact-pro {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-item {
    display: flex;
    margin-bottom: 20px;
}
.contact-item i {
    font-size: 20px;
    margin-right: 12px;
    color: #1b5e20;
}
.contact-item h6 {
    margin: 0;
    font-weight: 600;
}
.contact-item p {
    margin: 0;
    color: #777;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.contact-form input,
.contact-form textarea {
    border: 1px solid #eee;
    padding: 12px;
    border-radius: 10px;
}
.contact-form button {
    background: linear-gradient(135deg, #198754, #28a745);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
}

.map-box {
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
}
.map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .map-box {
        height: 300px;
    }
}

.gallery-title {
    font-weight: 700;
    font-size: 28px;
    margin-top: 5px;
}

/* GRID */
.gallery-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 1100px;
    margin: auto;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .gallery-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .gallery-modern {
        grid-template-columns: 1fr;
    }
}

/* ITEM */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    height: 200px;
    cursor: pointer;
}

/* IMAGE */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

/* OVERLAY */
.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 12px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s;
}

.gallery-item .overlay h5 {
    font-size: 14px;
    margin: 0;
}

.gallery-item .overlay p {
    font-size: 12px;
    margin: 0;
    opacity: 0.8;
}

/* HOVER */
.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .overlay {
    opacity: 1;
    transform: translateY(0);
}

/* SEARCH PREMIUM */
.search-box {
    background: #f1f3f5;
    border-radius: 30px;
    padding: 5px 10px;
    transition: 0.3s;
}
.search-box i {
    color: #777;
    font-size: 14px;
    margin-right: 5px;
}
.search-box input {
    border: none;
    outline: none;
    background: transparent;
    width: 120px;
    transition: 0.3s;
    font-size: 14px;
}
.search-box:focus-within {
    background: #e9ecef;
}
.search-box input:focus {
    width: 180px;
}

.search-box {
    background: #ffffff;
    border-radius: 50px;
    padding: 6px 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.search-box:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.search-box i {
    font-size: 16px;
    color: #888;
    margin-right: 8px;
}

.search-box input {
    border: none;
    outline: none;
    background: transparent;
    width: 160px;
    transition: 0.3s;
}

.search-box input:focus {
    width: 220px;
}

.search-btn {
    border: none;
    background: linear-gradient(135deg, #198754, #28a745);
    color: white;
    padding: 6px 14px;
    border-radius: 30px;
    margin-left: 8px;
    transition: 0.3s;
}

.search-btn:hover {
    background: linear-gradient(135deg, #198754, #28a745);
}

/* CONTACT */
.contact {
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    color: #fff;
    border-radius: 25px;
    padding: 60px;
}
.contact input,
.contact textarea {
    border: none;
    border-radius: 12px;
    padding: 12px;
}

/* FOOTER */
.footer-pro {
    background: #0b0f0c;
    color: #bbb;
    padding: 60px 0 20px;
}

/* FOOTER WHITE */
.footer-pro {
    background: #ffffff;
    color: #555;
    padding: 60px 0 20px;
    border-top: 1px solid #eee;
}

/* LOGO */
.footer-logo {
    color: #111;
    font-weight: 700;
    margin-bottom: 15px;
}

/* DESC */
.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* SOCIAL */
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #f1f3f5;
    color: #1b5e20;
    border-radius: 50%;
    margin-right: 8px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: linear-gradient(135deg, #198754, #28a745);
    color: #fff;
    transform: translateY(-3px);
}

/* TITLE */
.footer-title {
    color: #111;
    font-weight: 600;
    margin-bottom: 15px;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #1b5e20;
    padding-left: 5px;
}

/* CONTACT */
.footer-contact p {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-contact i {
    margin-right: 8px;
    color: #1b5e20;
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid #eee;
    margin-top: 30px;
    padding-top: 15px;
    font-size: 13px;
    color: #888;
}
