/* ===========================
   GLOBAL RESET
=========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 130px;
}

body {
    font-family: "Poppins", sans-serif;
    background: #f4f7f6;
    color: #333;
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}


/* ===========================
   HEADER
=========================== */

header {
    background: #0b5e36;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 0;
}

.logo img {
    width: 90px;
    flex-shrink: 0;
}

.logo-text {
    min-width: 0;
}

.logo h1 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
}

.logo p {
    color: #d4af37;
    font-size: 12px;
    line-height: 1.4;
    margin-top: 4px;
}


/* ===========================
   NAVIGATION
=========================== */

nav ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    list-style: none;
    gap: 10px 20px;
}

nav ul li a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a:focus {
    color: #d4af37;
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 8px;
    background: transparent;
    color: #fff;
    font-size: 23px;
    cursor: pointer;
}


/* ===========================
   SECTIONS
=========================== */

section {
    padding: 80px 0;
}

section h2 {
    color: #0b5e36;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.25;
    text-align: center;
    margin-bottom: 25px;
}

.section-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}


/* ===========================
   BUTTONS
=========================== */

.btn {
    display: inline-block;
    padding: 14px 30px;
    border: none;
    border-radius: 8px;
    background: #d4af37;
    color: #0b5e36;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.btn:hover {
    background: #ffffff;
    transform: translateY(-3px);
}


/* ===========================
   STATISTICS
=========================== */

.stats {
    background: #0b5e36;
    padding: 55px 0;
}

.stats .container {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.stat-box {
    min-width: 0;
    padding: 30px 20px;
    border-radius: 10px;
    background: #fff;
    text-align: center;
}

.stat-box h3 {
    color: #0b5e36;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.2;
    margin-bottom: 10px;
    overflow-wrap: anywhere;
}

.stat-box p {
    font-weight: 600;
}


/* ===========================
   ABOUT CARDS
=========================== */

.cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    min-width: 0;
    padding: 35px;
    border-radius: 12px;
    background: #fff;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.card i {
    color: #d4af37;
    font-size: 50px;
    margin-bottom: 20px;
}

.card h3 {
    color: #0b5e36;
    margin-bottom: 15px;
}


/* ===========================
   SERVICES
=========================== */

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    min-width: 0;
    padding: 30px;
    border-radius: 15px;
    background: #fff;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.13);
}

.service-card i {
    color: #d4af37;
    font-size: 55px;
    margin-bottom: 20px;
}

.service-card h3 {
    color: #0b5e36;
    margin-bottom: 15px;
}


/* ===========================
   LEGISLATION
=========================== */

.laws {
    max-width: 700px;
    margin: 30px auto 0;
}

.laws li {
    list-style: none;
    padding: 15px;
    margin-bottom: 15px;
    border-left: 6px solid #d4af37;
    border-radius: 8px;
    background: #fff;
    font-weight: 600;
}


/* ===========================
   REPORT FORM
=========================== */

form {
    width: 100%;
    max-width: 900px;
    margin: 40px auto 0;
    padding: 40px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

form label {
    display: block;
    margin-top: 20px;
    font-weight: 600;
}

form input,
form textarea,
form select {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 14px 15px;
    margin-top: 8px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: #fff;
    color: #333;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
}

form input:focus,
form textarea:focus,
form select:focus {
    border-color: #0b5e36;
    outline: 2px solid rgba(11, 94, 54, 0.12);
}

form textarea {
    resize: vertical;
    min-height: 150px;
}

form input[type="file"] {
    padding: 10px;
    overflow: hidden;
}

form button {
    margin-top: 30px;
}


/* ===========================
   CONTACT
=========================== */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 40px;
}

.contact-grid > div {
    min-width: 0;
    padding: 30px 20px;
    border-radius: 12px;
    background: #fff;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    overflow-wrap: anywhere;
    word-break: break-word;
}

.contact-grid h3 {
    color: #0b5e36;
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-grid h3 i {
    color: #d4af37;
    margin-right: 5px;
}

.contact-grid a {
    color: #333;
    text-decoration: none;
}

.contact-grid a:hover {
    color: #0b5e36;
    text-decoration: underline;
}


/* ===========================
   FOOTER
=========================== */

footer {
    padding: 60px 20px;
    background: #0b5e36;
    color: #fff;
    text-align: center;
}

.footer-logo {
    width: 120px;
    margin-bottom: 20px;
}

footer h3 {
    margin-bottom: 15px;
}

footer p {
    margin-top: 10px;
}


