@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root{
    --primary-color: #1e1e1e;
    --secondary-color: #fcfcfc;
    --accent-color: #555;
    --accent-color-white: #ccc;
}

html, body {
    height: 100%;
    width: 100%;
}

body.menu-open {
    overflow: hidden;
}

.navbar {
    background-color: var(--secondary-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    min-height: 60px;
    height: auto;
    width: 100%;
    gap: 0.5rem 1rem;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.logo img {
    height: 28px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
    min-width: 0;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    row-gap: 0.15rem;
}

.nav-item {
    position: relative;
    height: auto;
    display: flex;
    align-items: center;
}

.nav-link {
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.35rem 0.75rem;
    height: auto;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    font-weight: 200;
    transition: color 0.3s ease;
    white-space: nowrap;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0.75rem;
    right: 0.75rem;
    height: 1.5px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.2s ease-out;
    transform-origin: right;
}

.nav-link:hover::before,
.nav-link.active::before {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}

.nav-link.has-dropdown::after {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-right: 1.2px solid currentColor;
    border-bottom: 1.2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    flex-shrink: 0;
    margin-left: 0.3rem;
}

.nav-link.has-dropdown:hover::after,
.nav-link.has-dropdown[aria-expanded="true"]::after {
    transform: rotate(225deg);
}

.nav-item::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 0px;
    z-index: 999;
    pointer-events: none;
}

.dropdown-menu {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--secondary-color);
    min-width: 200px;
    max-width: 120vw;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-2px);
    transition: all 0.2s ease;
    border-top: 1.5px solid var(--primary-color);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    pointer-events: none;
}

.nav-item:nth-last-child(2) .dropdown-menu,
.nav-item:last-child .dropdown-menu {
    left: auto;
    right: 0;
}

.nav-link:hover ~ .dropdown-menu,
.dropdown-menu:hover,
.dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-link {
    color: var(--primary-color);
    text-decoration: none;
    display: block;
    padding: 0.65rem 1.1rem;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    font-weight: 200;
    position: relative;
    white-space: nowrap;
}

.dropdown-link:hover,
.dropdown-link.active {
    color: var(--accent-color);
    background-color: rgba(0, 0, 0, 0.03);
    padding-left: 1.3rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    gap: 4px;
    width: 26px;
    height: 20px;
    justify-content: center;
    flex-shrink: 0;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 1px;
}

.hamburger.active span:first-child {
    transform: rotate(45deg) translate(4.25px, 4.25px);
}

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

.hamburger.active span:last-child {
    transform: rotate(-45deg) translate(4.25px, -4.25px);
}

@media (max-width: 1024px) {
    .navbar-container {
        padding: 0 1rem;
        min-height: 56px;
        height: 56px;
        flex-wrap: nowrap;
    }

    .logo {
        font-size: 0.95rem;
        font-weight: 500;
    }

    .logo img {
        height: 24px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 56px;
        flex-direction: column;
        background-color: var(--secondary-color);
        width: 100%;
        height: calc(100dvh - 56px);
        text-align: left;
        transition: left 0.3s ease;
        overflow-y: auto;
        justify-content: flex-start;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-item {
        width: 100%;
        height: auto;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        display: flex;
        flex-direction: column;
    }

    .nav-link {
        width: 100%;
        padding: 0.9rem 1.2rem;
        height: auto;
        font-size: 0.9rem;
        font-weight: 300;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-link::before {
        display: none;
    }

    .nav-link.has-dropdown::after {
        position: static;
        display: block;
        margin-left: auto;
        margin-right: 0;
    }

    .nav-link.has-dropdown[aria-expanded="true"]::after {
        transform: rotate(225deg);
    }

    .dropdown-menu {
        position: static;
        opacity: 0;
        display: flex;
        flex-direction: column;
        width: 100%;
        transform: scaleY(0);
        transform-origin: top;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        border: none;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
        box-shadow: none;
        background-color: rgba(0, 0, 0, 0.02);
    }

    .dropdown-menu.active {
        opacity: 1;
        visibility: visible;
        transform: scaleY(1);
        max-height: 500px;
    }

    .dropdown-link {
        padding: 0.65rem 1.5rem;
        text-align: left;
        font-size: 0.85rem;
        font-weight: 300;
    }

    .nav-link:hover .dropdown-menu {
        opacity: 0;
        visibility: hidden;
    }
}

.footer {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 3rem 2rem;
}

.footer-container {
    display: flex;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
}

.footer-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav-list a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-nav-list a:hover {
    color: var(--accent-color);
}

.footer-center {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 2rem;
}

.lapada-foot{
    padding: 0.2rem;
    background-color: #fff;
}

.footer-heading {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-logos {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

.footer-logos img {
    height: 80px;
    width: auto;
    border-radius: 0.3rem;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    color: #ffffff;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.social-link:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.footer-info {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.6;
}

.footer-info p {
    margin-bottom: 0.75rem;
}

.footer-info a {
    color: var(--accent-color-white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-info a:hover {
    opacity: 0.8;
}

.footer-address {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-credit a {
    color: var(--accent-color-white);
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-center {
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 2rem 0;
    }

    .footer {
        padding: 2rem 1rem;
    }

    .footer-logos img {
        height: 60px;
    }

    .footer-info {
        font-size: 0.8rem;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.68rem 1.8rem;
    border-radius: 0.25rem;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.86rem;
    transition: opacity 0.2s ease;
    border: none;
}

.btn:hover {
    opacity: 0.9;
}

.btn-accent {
    background: var(--accent-color);
    color: var(--secondary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.btn-light {
    background: var(--secondary-color);
    color: var(--accent-color);
}

.page-hero {
    background:
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)),
        var(--hero-bg, var(--primary-color));
    background-size: cover;
    background-position: center;
    padding: 8rem 0 4rem;
    display: flex;
    align-items: center;
}

.page-hero-container {
    padding: 6rem 0 5rem;
    width: min(1100px, 90%);
    margin: 0 auto;
}

.page-hero-title {
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 200;
    line-height: 1.15;
    letter-spacing: 0.01em;
    margin: 0 0 0.65rem;
}

.page-hero-title.center {
    text-align: center;
}

.page-hero-sub {
    color: #eee;
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0;
}

.page-section {
    padding: 4rem 0;
}

.page-section-container {
    width: min(1100px, 90%);
    margin: 0 auto;
}

.section-title {
    font-size: clamp(1.45rem, 2.8vw, 2rem);
    font-weight: 300;
    color: var(--primary-color);
    margin: 0 0 1.2rem;
    line-height: 1.2;
}

.section-body p {
    font-size: 0.95rem;
    font-weight: 300;
    color: #2f2f2f;
    line-height: 1.75;
    margin: 0 0 1.1rem;
}

.section-body p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 3.5rem 0 3rem;
    }
}