/* Header */
header {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header:hover {
    background: rgba(255, 255, 255, 0.85);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-image {
    /* background: linear-gradient(135deg, #7CB342, #9CCC65); */
    /* border-radius: 12px; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 4px 15px rgba(124, 179, 66, 0.3); */
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo-image img {
    width: 80px;
    height: auto;
    object-fit: contain;
}

.logo-divider {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom,
            rgba(124, 179, 66, 0.3),
            rgba(124, 179, 66, 0.8),
            rgba(124, 179, 66, 0.3));
}

.logo-text {
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(135deg, #558B2F, #7CB342);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    line-height: 1.2
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    padding: 5px 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #7CB342, #9CCC65);
    transition: width 0.3s ease;
}

nav a:hover {
    color: #7CB342;
}

nav a:hover::after {
    width: 100%;
}

/* Right Icons */
.header-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.icon-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(124, 179, 66, 0.1);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #558B2F;
    font-size: 18px;
}

.icon-btn:hover {
    background: rgba(124, 179, 66, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 179, 66, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        padding: 15px 20px;
    }

    nav ul {
        gap: 20px;
    }

    nav a {
        font-size: 14px;
    }

    .logo-text {
        font-size: 22px;
    }

    .logo-image {
        width: 50px;
        height: 50px;
    }

    .logo-image img {
        width: 35px;
        height: 35px;
    }
}


/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 40px 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-about img{
    width: 60px;
    height: auto;
    object-fit: contain;
}

.footer-about h3 {
    font-size: 22px;
    font-weight: 700;
}

.footer-about p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.8;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.7;
    font-size: 14px;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-social-list {
    margin-top: 20px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    opacity: 0.8;
    font-size: 14px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    opacity: 1;
    transform: translateX(5px);
}

.footer-social-link svg {
    flex-shrink: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    opacity: 0.7;
}