/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    width: 100%;
    margin: 0;
    position: fixed;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 5px 20px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-left a {
    display: flex;
    align-items: center;
}

.navbar-left img {
    height: 80px;
    margin-right: 10px;
    transition: height 0.3s ease;
}

.navbar.scrolled .navbar-left img {
    height: 60px;
}

.navbar-right {
    display: flex;
    align-items: center;
}

.navbar-right ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar-right li {
    margin-right: 10px;
}

.navbar-right a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.navbar-right a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #D8B66A;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-right a:hover::after {
    width: 60%;
}

.navbar-right a:hover {
    color: #2E5F3F;
}

.navbar-right a.active {
    background: linear-gradient(135deg, #2E5F3F 0%, #1a3d28 100%);
    color: #FFF;
}

.navbar-right a.active::after {
    display: none;
}

.lang-dropdown {
    margin-left: 20px;
}

.lang-dropdown select {
    padding: 8px 15px;
    border: 2px solid #2E5F3F;
    border-radius: 50px;
    background-color: transparent;
    color: #2E5F3F;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.lang-dropdown select:hover {
    background-color: #2E5F3F;
    color: #FFF;
}

.lang-dropdown select:focus {
    outline: none;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    background: transparent;
    border: none;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: #2E5F3F;
    margin: 3px 0;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Responsive Navbar */
@media (max-width: 768px) {
    .navbar {
        padding: 8px 15px;
    }

    .navbar-left img {
        height: 55px;
    }

    .hamburger {
        display: flex;
    }

    .navbar-right {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: linear-gradient(180deg, #FFF 0%, #F8F9FA 100%);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding-top: 100px;
        padding-left: 30px;
        padding-right: 30px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    }

    .navbar-right.active {
        right: 0;
    }

    .navbar-right ul {
        flex-direction: column;
        width: 100%;
    }

    .navbar-right li {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .navbar-right a {
        font-size: 18px;
        padding: 15px 20px;
        display: block;
        border-radius: 10px;
    }

    .navbar-right a::after {
        display: none;
    }

    .navbar-right a:hover {
        background: rgba(46, 95, 63, 0.1);
    }

    .lang-dropdown {
        margin-left: 0;
        margin-top: 30px;
        width: 100%;
    }

    .lang-dropdown select {
        width: 100%;
        padding: 12px 20px;
        font-size: 16px;
    }

    /* Overlay when menu is open */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .nav-overlay.active {
        display: block;
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .navbar-left img {
        height: 45px;
    }

    .navbar-right {
        width: 85%;
    }
}

/* Enhanced Footer Styles */
.footer {
    background: linear-gradient(135deg, #2E5F3F 0%, #1a3d28 100%);
    color: #FFF;
    padding: 60px 0 0;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px 40px;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    height: 80px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #FFF;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #D8B66A;
    color: #2E5F3F;
    transform: translateY(-3px);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

/* Footer Links */
.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #D8B66A;
    font-family: 'Poppins', sans-serif;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #D8B66A;
    transform: translateX(5px);
}

/* Footer Contact */
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-contact li svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: #D8B66A;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding: 20px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.1);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Legacy Footer Support */
.company-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #D8B66A;
    font-family: 'Poppins', sans-serif;
}

.company-info p {
    font-size: 1rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

/* Footer Mobile Responsive */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 35px;
        padding: 0 20px 35px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-logo {
        height: 70px;
    }

    .footer-links h4,
    .footer-contact h4 {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-bottom {
        padding: 15px 20px;
    }

    .footer-bottom p {
        font-size: 0.85rem;
    }

    .company-info h3 {
        font-size: 1.3rem;
    }

    .company-info p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 0;
    }

    .footer-content {
        gap: 30px;
        padding: 0 15px 30px;
    }

    .footer-logo {
        height: 60px;
    }

    .social-link {
        width: 38px;
        height: 38px;
    }

    .footer-links a,
    .footer-contact li {
        font-size: 0.9rem;
    }
}
