/* ========================================
   HEADER - Responsive Navigation
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(120deg, rgba(38, 80, 42, 0.95) 0%, rgba(26, 58, 29, 0.98) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 10px 0;
    background: rgba(38, 80, 42, 0.98);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo img {
    height: 55px;
    transition: all 0.3s ease;
}

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

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px;
}

.nav-links li a {
    color: white;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #a8d8a8;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #a8d8a8;
    transition: width 0.3s ease;
}

.nav-links li a:hover::after {
    width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 85%;
    max-width: 350px;
    height: calc(100vh - 80px);
    background: linear-gradient(135deg, #26502a 0%, #1a3a1d 100%);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.25);
    padding: 30px 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu .nav-links {
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.mobile-menu .nav-links li a {
    display: block;
    width: 100%;
    padding: 15px 20px;
    font-size: 18px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mobile-menu .nav-links li a:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 998;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Close button for mobile menu */
.mobile-menu-close {
    position: absolute;
    top: 20px;
    left: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* ========================================
   FOOTER - Modern Design
   ======================================== */

.footer {
    background: linear-gradient(135deg, #1a2a1c 0%, #0d170e 100%);
    color: #e0e0e0;
    padding-top: 80px;
    padding-bottom: 40px;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #26502a, #4caf50, #26502a);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-column h3 {
    color: white;
    font-size: 22px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #4caf50;
    border-radius: 3px;
}

.footer-column p,
.footer-column a {
    color: #b0b0b0;
    line-height: 1.8;
    font-size: 16px;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 12px;
}

.footer-column a:hover {
    color: #4caf50;
    transform: translateX(5px);
    margin-left: 5px;
}

.footer-logo img {
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.footer-about p {
    margin-bottom: 25px;
    font-size: 15px;
    opacity: 0.9;
}

/* Social Media */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: #4caf50;
    transform: translateY(-3px);
}

/* Contact Info */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 20px;
    color: #4caf50;
    min-width: 25px;
    margin-top: 3px;
}

.contact-item span {
    font-size: 15px;
    line-height: 1.7;
}

/* Quick Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

/* Copyright Section */
.copyright-section {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 25px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 15px;
    color: #999;
}

/* Footer Decorative Elements */
.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, transparent 70%);
    z-index: 0;
}

/* ========================================
   RESPONSIVE