/* --- LAYOUT BASE --- */
.main-wrapper {
    background-color: var(--color-navy-dark);
    min-height: 100vh;
    width: 100%;
}

/* --- HEADER --- */
.site-header-wrapper {
    width: 100%;
    background-color: var(--color-navy-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1000;
}

.site-header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    height: 80px;
    width: auto;
    transition: height 0.3s ease;
    position: relative;
    z-index: 1002;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-white);
    opacity: 0.9;
}

.nav-link:hover {
    opacity: 1;
    color: var(--color-red);
}

.btn-cta {
    padding: 0.9rem 2.4rem;
    background-color: var(--color-red);
    border-radius: 999px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-white);
    border: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.btn-cta:hover {
    background-color: var(--color-red-hover);
    transform: translateY(-2px);
}

/* Hamburger Button */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10000;
}

.hamburger-btn span {
    width: 100%;
    height: 3px;
    background-color: var(--color-white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-navy-dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.mobile-nav-link {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-white);
}

.mobile-cta {
    margin-top: 1rem;
    font-size: 1.3rem;
    padding: 1rem 3rem;
}

body.no-scroll {
    overflow: hidden;
}

/* --- COMMON SECTION STYLES --- */
.section {
    padding: 7rem 0;
}

.section-header {
    margin-bottom: 5rem;
}

.section-header.text-center {
    text-align: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.section-header.text-left {
    text-align: left;
}

.section-header.text-left .section-description {
    margin-left: 0;
    text-align: left;
}

.section-title {
    font-size: var(--font-size-h2);
    font-weight: 700;
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- FOOTER --- */
.site-footer {
    background-color: rgba(0, 25, 56, 1);
    padding-top: 1.5rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 1.5rem;
}

.footer-brand img {
    height: 50px;
    width: auto;
}

.footer-links-group {
    display: flex;
    gap: 5rem;
}

.footer-col {
    min-width: 250px;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0;
}

.footer-info {
    font-size: 1rem;
    line-height: 1.8;
}

.footer-info a {
    text-decoration: underline;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.15rem;
}

.social-icon {
    width: 25px;
    height: 25px;
}

.footer-bottom {
    padding: 1rem 0;
    background-color: #000812;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    opacity: 0.7;
}
