/* ===== GLOBAL STYLES ===== */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, sans-serif;
    background-color: #f6faf6;
    color: #333;
    line-height: 1.7;
}

/* ===== PREMIUM SITE HEADER ===== */
.site-header {
    background: linear-gradient(135deg, #1b5e20, #43a047);
    color: #fff;
    padding: 20px 0;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    padding: 0 20px;
    flex-wrap: wrap;
}

.logo img {
    height: 70px;
    width: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.header-text h1 {
    margin: 0;
    font-size: 2.6em;
    letter-spacing: 1px;
    line-height: 1.1;
    text-shadow: 1px 2px 6px rgba(0,0,0,0.4);
}

.header-text p {
    margin: 5px 0 0;
    font-size: 1.2em;
    opacity: 0.9;
    text-shadow: 1px 2px 5px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .header-text h1 {
        font-size: 1.9em;
    }

    .header-text p {
        font-size: 1em;
    }

    .logo img {
        height: 60px;
    }
}

/* ===== NAVIGATION ===== */
nav {
    display: flex;
    justify-content: center;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav a {
    color: #2e7d32;
    padding: 15px 22px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

nav a:hover {
    background: #e8f5e9;
    color: #1b5e20;
}

/* ===== SLIDER ===== */
.slider {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
}

.slides {
    display: flex;
    height: 100%;
    transition: transform 0.8s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark overlay */
.slider::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0, 0, 0, 0.55),
        rgba(0, 0, 0, 0.3)
    );
}

/* ===== SLIDER TEXT ===== */
.slider-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 700px;
    padding: 20px;
}

.slider-text h2 {
    font-size: 2.8em;
    margin-bottom: 10px;
}

.slider-text p {
    font-size: 1.2em;
    opacity: 0.95;
}

/* Text animation */
.slider-text h2,
.slider-text p {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s ease forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== CONTENT ===== */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 60px 20px;
}

.card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(0,0,0,0.12);
}

.card h2 {
    color: #2e7d32;
    margin-bottom: 15px;
    font-size: 1.8em;
}

/* ===== FOOTER ===== */
footer {
    background: #1b5e20;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 60px;
    font-size: 0.95em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.9em;
    }

    .slider {
        height: 280px;
    }

    .slider-text h2 {
        font-size: 1.9em;
    }

    .slider-text p {
        font-size: 1em;
    }
}

/* ===== CONTACT FORM STYLING ===== */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

form input,
form textarea {
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1em;
    width: 100%;
    transition: border-color 0.3s ease;
}

form input:focus,
form textarea:focus {
    border-color: #43a047;
    outline: none;
}

form label {
    font-weight: 600;
}

form button {
    width: fit-content;
    cursor: pointer;
    padding: 12px 30px;
    background: #43a047;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    transition: background 0.3s ease, transform 0.3s ease;
}

form button:hover {
    background: #2e7d32;
    transform: translateY(-3px);
}

