/*///////////////////
Global Styles
///////////////////*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    margin: 0 auto;
    overflow-x: hidden;
    width: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--brand-text);
    background: var(--white);
}

a {
    color: inherit;
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

.hidden {
    display: none;
}

/*///////////////////
Navigation
///////////////////*/

:root {
    --nav-bg: rgba(10, 10, 10, 0.72);
    --nav-bg-scrolled: rgba(10, 10, 10, 0.92);
    --nav-border: rgba(255, 255, 255, 0.08);
    --nav-text: #ffffff;
    --nav-muted: rgba(255, 255, 255, 0.82);
    --brand-gold: #efb506;
    --brand-gold-dark: #d49b00;
}

#topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.main-header {
    cursor: default;
    width: 100%;
    min-height: 92px;
    margin: 0;
    padding: 0 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    list-style: none;
    background: var(--nav-bg);
    color: var(--nav-text);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--nav-border);
    transition:
        background 0.3s ease,
        min-height 0.3s ease,
        box-shadow 0.3s ease,
        padding 0.3s ease,
        transform 0.3s ease;
}

.main-header.nav-scrolled {
    min-height: 76px;
    background: var(--nav-bg-scrolled);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.main-header li {
    display: flex;
    align-items: center;
}

.main-header li:first-child {
    margin-right: auto;
    padding-right: 28px;
}

.main-header img {
    display: block;
    height: 82px;
    width: auto;
    transition: height 0.3s ease, transform 0.3s ease;
}

.main-header.nav-scrolled img {
    height: 68px;
}

.main-header a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    margin: 0 4px;
    text-decoration: none;
    color: var(--nav-muted);
    font-family: 'Poppins', sans-serif;
    font-size: 0.98rem;
    font-weight: 500;
    line-height: 1;
    border-radius: 999px;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        transform 0.25s ease;
}

.main-header a:hover,
.main-header a:focus {
    color: var(--nav-text);
    background: rgba(255, 255, 255, 0.06);
}

.main-header a::after {
    content: '';
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 4px;
    height: 2px;
    width: auto;
    transform: scaleX(0);
    transform-origin: center;
    background: var(--brand-gold);
    border-radius: 999px;
    transition: transform 0.28s ease;
}

.main-header a:hover::after,
.main-header a:focus::after {
    transform: scaleX(1);
}

.dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropbtn {
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    padding: 10px;
    background: rgba(18, 18, 18, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 1010;
}

.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    margin: 0;
    padding: 12px 14px;
    border-radius: 12px;
    color: var(--nav-text);
    text-align: left;
    background: transparent;
    font-size: 0.95rem;
}

.dropdown-content a:hover,
.dropdown-content a:focus {
    background: rgba(239, 181, 6, 0.12);
    color: var(--nav-text);
}

.dropdown-content a::after {
    display: none;
}

.dropdown .dropbtn::after {
    content: '';
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 4px;
    height: 2px;
    transform: scaleX(0);
    transform-origin: center;
    background: var(--brand-gold);
    border-radius: 999px;
    transition: transform 0.28s ease;
}

.dropdown:hover .dropbtn::after,
.dropdown:focus-within .dropbtn::after {
    transform: scaleX(1);
}

.mobile-topbar {
    display: none;
}

/* @media only screen and (max-width: 950px) {
    .main-header {
        display: none;
    }
    .mobile-topbar {
        cursor: default;
        margin: 0 -10px;
        width: 100%;
        height: 100px;
        display: flex;
        justify-content: space-around;
        align-items: center;
        user-select: none;
        list-style-type: none;
        position: fixed;
        top: 0;
        background-color: black;
        color: white;
        z-index: 10;
    }
    .mobile-nav-img {
        display: flex;
    }
    .bar1, .bar2, .bar3 {
        display: flex;
        width: 35px;
        height: 5px;
        background-color: grey;
        margin: 6px 0;
        transition: 0.4s;
    }
    .change .bar1 {
        -webkit-transform: rotate(-45deg) translate(-9px, 6px);
        transform: rotate(-45deg) translate(-9px, 6px);
    }
    .change .bar2 {
        opacity: 0;
    }
    .change .bar3 {
        -webkit-transform: rotate(45deg) translate(-8px, -8px);
        transform: rotate(45deg) translate(-8px, -8px);
    }
    .mobile-header {
        display: none;
    }

} */

/*///////////////////
Footer
///////////////////*/

.site-footer {
    background: linear-gradient(180deg, #0f0f0f 0%, #141414 100%);
    color: rgba(255, 255, 255, 0.82);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 0;
}

.footer-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 42px;
    padding: 68px 0 36px;
}

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

.footer-logo {
    width: 220px;
    height: auto;
    display: block;
    margin-bottom: 18px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
    font-size: 0.96rem;
}

.footer-column h3 {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 18px;
    position: relative;
}

.footer-column h3::after {
    content: "";
    display: block;
    width: 38px;
    height: 2px;
    margin-top: 10px;
    background: #efb506;
    border-radius: 999px;
}

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

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

.footer-column a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
    display: inline-block;
}

.footer-column a:hover {
    color: #efb506;
    transform: translateX(2px);
}

.footer-contact-list li {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0 24px;
    display: flex;
    justify-content: center;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.92rem;
    line-height: 1.6;
}

/*///////////////////
Shared CTA
///////////////////*/

.shared-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 48px 52px;
    border-radius: 24px;

    background: linear-gradient(
        135deg,
        rgba(20, 20, 20, 0.96),
        rgba(30, 30, 30, 0.92)
    );

    border: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Left Content */
.shared-cta-box div {
    max-width: 640px;
}

/* Tag */
.shared-cta-box .section-tag {
    color: #efb506;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* Heading */
.shared-cta-box h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: #ffffff;
    margin-bottom: 14px;
    line-height: 1.3;
}

/* Text */
.shared-cta-box p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
    line-height: 1.75;
}

/* Button inside CTA */
.shared-cta-box .primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    white-space: nowrap;
    flex-shrink: 0;   

    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 700;

    background: #efb506;
    color: #111;
    text-decoration: none;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.shared-cta-box .primary-button:hover {
    background: #d49b00;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(239, 181, 6, 0.3);
}