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

body {
    background-color: #181818;
    color: #ffffff;
    line-height: 1.6;
}

/* Container helper */
.container {
    max-width: 1400px;
    margin: 0 auto;
}


a {
    text-decoration: none;
}


.nav-link {
    position: relative;
    text-decoration: none;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero2 {
    height: 500px;
    min-height: 400px;
    background: url('Images/membership.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    margin-top: 80px;
    padding: 0 20px;
}

.hero-content h1 {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 48px;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 18px;
    opacity: 0.9;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    height: 40px;
    max-width: 100%;
}

/* Discuss Section */
.discuss {
    background: #161616;
    padding: 60px 40px;
    text-align: center;
    border-bottom: 1px solid #333;
}

.discuss h3 {
    color: white;
    font-size: 25px;
    font-family: 'Tenor Sans', sans-serif;
    margin-bottom: 10px;
}

.discuss p {
    color: white;
    margin-top: 5px;
    font-size: 16px;
    font-family: 'Urbanist', sans-serif;
    max-width: 800px;
    margin-left: auto;
    margin-bottom: 25px;
    margin-right: auto;
}


h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 200;
    margin-bottom: 10px;
    letter-spacing: 3px;
    font-family: 'Tenor Sans', sans-serif;
    position: relative;
}

.subtitle {
    text-align: center;
    color: #b0b0b0;
    margin-bottom: 60px;
    font-family: 'Urbanist', sans-serif;
    padding: 0 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tick_icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    vertical-align: middle;
}

.tick_text {
    color: #BDBDBD;
    line-height: 1.2;
    font-size: 17px;
    font-weight: 500;
    font-family: 'Urbanist', sans-serif;
}

/* Membership Benefits */
.membership-benefits {
    padding: 80px 40px;
}

.benefits-box {
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    margin: 0 auto;
    max-width: 1200px;
}

.benefits-box ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
    padding-left: 0;
}

.benefits-box li {
    color: #dcdcdc;
    font-family: 'Urbanist', sans-serif;
}

/* MEMBERSHIP TIERS */
.membership-tiers {
    background: #161616;
    padding: 30px;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.tier-card {
    border-radius: 16px;
    overflow: hidden;
    max-width: 400px;
    width: 100%;
}

.tier-header {
    height: 280px;
    overflow: hidden;
}

.tier-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.65);
    margin: 15px 0;
}

/* TIER BODY */
.tier-body {
    background: linear-gradient(#c9a86a, #8a6d3b);
    padding: 25px;
    color: #fff;
}

.tier-body h4 {
    font-size: 26px;
    margin-bottom: 10px;
    font-weight: 500;
    font-family: 'Urbanist', sans-serif;
}

.tier-desc {
    font-size: 15px;
    margin-bottom: 5px;
    font-family: 'Urbanist', sans-serif;
}

.tier-body ul {
    margin-top: 20px;
    list-style: none;
    padding-left: 0;
}

.tier-body li {
    margin-bottom: 12px;
    font-size: 15px;
    position: relative;
    padding-left: 18px;
    font-family: 'Urbanist', sans-serif;
}

.tier-body li::before {
    content: "•";
    position: absolute;
    left: 0;
}


/* Footer */
.footer {
    background: #161616;
    padding: 80px 40px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-brand img {
    height: 40px;
    max-width: 100%;
    object-fit: contain;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-family: 'Tenor Sans', sans-serif;
}

.footer-column a {
    display: block;
    color: white;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #C9A86A;
}

.subscribe-message {
    margin-top: 10px;
    color: #7cb342 !important;
    font-weight: 500;
    display: none;
}

.subscribe-field {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.subscribe-field input {
    flex: 1;
    padding: 12px;
    background: transparent;
    border: 1px solid #333;
    color: #fff;
    font-size: 14px;
    font-family: 'Urbanist', sans-serif;
}

.subscribe-button {
    padding: 12px 30px;
    background: #fff;
    color: #000;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Urbanist', sans-serif;
    transition: background 0.3s;
    white-space: nowrap;
}

.subscribe-button:hover {
    background: #C4A962;
}

.social-icons {
    display: flex;
    gap: 25px;
    margin-top: 20px;
}

.social-icons a img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s;
}

.social-icons a:hover img {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: white;
    font-size: 14px;
    max-width: 1400px;
    margin: 0 auto;
}

/* RESPONSIVE BREAKPOINTS */


/* Tablet Large (1024px and below) */
@media (max-width: 1024px) {

    .nav-left,
    .nav-right {
        gap: 30px;
    }

    .nav-link {
        font-size: 15px;
    }

}


@media (max-width: 768px) {
    .hero2 {
        height: 400px;
    }

    .hero2 .hero-content h1 {
        font-size: 32px;
    }

    .hero2 .hero-content p {
        font-size: 16px;
    }

}

@media (max-width: 480px) {
    .hero2 {
        height: 350px;
    }

    .hero2 .hero-content h1 {
        font-size: 24px;
        letter-spacing: 2px;
    }

    .hero2 .hero-content p {
        font-size: 14px;
    }
}

/* Tablet Medium (900px and below) */
@media (max-width: 900px) {
    .menu-toggle {
        display: flex;
    }

    .nav-left,
    .nav-right {
        display: none;
    }

    .nav-container {
        justify-content: space-between;
    }

    .logo {
        order: 2;
    }

    .menu-toggle {
        order: 1;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-brand {
        text-align: center;
    }
}

/* Tablet - Large (1024px and below) */
@media (max-width: 1024px) {

    section {
        padding: 80px 30px;
    }

    .benefits-box {
        padding: 30px;
    }

    .benefits-box ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Tablet - Medium (900px and below) */
@media (max-width: 900px) {

    section {
        padding: 20px 15px;
    }

    .benefits-box ul {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .tiers-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tier-card {
        max-width: 500px;
    }

    .tier-header {
        height: 350px;
    }
}

/* Mobile - Large (768px and below) */
@media (max-width: 768px) {

    .discuss {
        padding: 50px 25px;
    }

    .discuss h3 {
        font-size: 22px;
    }

    .discuss p {
        font-size: 15px;
    }

    section {
        padding: 10px 2px;
    }

    .benefits-box {
        padding: 25px 20px;
    }

    .subtitle {
        margin-bottom: 40px;
    }
}

/* Mobile - Medium (640px and below) */
@media (max-width: 640px) {

    .logo {
        order: 1;
        flex: 1;
        text-align: center;
    }

    .hero7 {
        height: 350px;
    }



    section {
        padding: 50px 15px;
    }

    .benefits-box {
        padding: 20px 15px;
    }

    .benefits-box ul {
        gap: 20px;
    }

    .benefits-box li {
        font-size: 15px;
    }

    .tier-header {
        height: 250px;
    }

    .tier-body {
        padding: 20px;
    }

    .tier-body h4 {
        font-size: 24px;
    }

    .tier-body li {
        font-size: 14px;
    }
}


/* Mobile - Small (480px and below) */
@media (max-width: 480px) {

    .discuss {
        padding: 40px 20px;
    }

    .discuss h3 {
        font-size: 20px;
    }

    .discuss p {
        font-size: 14px;
    }

    h2 {
        font-size: 20px;
        letter-spacing: 1px;
    }

    section {
        padding: 10px 5px;
    }

    .subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .benefits-box {
        padding: 10px;
    }

    .tick_icon {
        width: 18px;
        height: 18px;
    }

    .benefits-box li {
        font-size: 14px;
    }

    .tiers-grid {
        gap: 25px;
    }

    .tier-header {
        height: 180px;
    }

    .tier-body {
        padding: 18px;
    }

    .tier-body h4 {
        font-size: 22px;
    }

    .tier-desc {
        font-size: 14px;
    }

    .tier-body li {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .tier-header {
        height: 250px;
    }
}

/* Mobile - Extra Small (360px and below) */
@media (max-width: 360px) {

    .discuss h3 {
        font-size: 18px;
    }

    .tier-body h4 {
        font-size: 20px;
    }
}




/* Desktop (1200px and below) */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .nav-container {
        padding: 0 30px;
    }

    .nav-left,
    .nav-right {
        gap: 40px;
    }
}

/* Tablet Large (1024px and below) */
@media (max-width: 1024px) {

    .nav-left,
    .nav-right {
        gap: 30px;
    }

    .nav-link {
        font-size: 15px;
    }
}

/* Tablet Medium (900px and below) */
@media (max-width: 900px) {
    .menu-toggle {
        display: flex;
    }

    .nav-left,
    .nav-right {
        display: none;
    }

    .nav-container {
        justify-content: space-between;
    }

    .logo {
        order: 2;
    }

    .menu-toggle {
        order: 1;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-brand {
        text-align: center;
    }
}

/* Tablet (768px and below) */
@media (max-width: 768px) {

    .container,
    .nav-container {
        padding: 0 20px;
    }

    .logo img {
        height: 50px;
        max-width: 220px;
    }

    .hero7 {
        height: 450px;
    }

    .hero-content h1 {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .footer-brand img {
        height: 35px;
        max-width: 220px;
    }

    .subscribe-field {
        flex-direction: column;
    }

    .subscribe-field input {
        width: 100%;
    }

    .subscribe-button {
        width: 100%;
    }
}

/* Mobile Large (640px and below) */
@media (max-width: 640px) {
    .hero7 {
        height: 400px;
    }

    .hero-content h1 {
        font-size: 32px;
    }
}

/* Mobile Medium (480px and below) */
@media (max-width: 480px) {

    .container,
    .nav-container {
        padding: 0 15px;
    }

    .logo img {
        height: 25px;

    }

    .sidebar-logo img {
        height: 30px;
        max-width: 170px;
    }

    .hero7 {
        height: 350px;
    }

    .hero-content h1 {
        font-size: 26px;
        letter-spacing: 1px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .footer {
        padding: 60px 20px 20px;
    }

    .footer-brand {
        margin-bottom: 20px;
    }

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

    .sidebar {
        width: 260px;
    }
}

/* Mobile Small (360px and below) */
@media (max-width: 360px) {
    .hero7 {
        height: 320px;
    }

    .hero-content h1 {
        font-size: 22px;
    }

    .hero-content p {
        font-size: 13px;
    }

    .logo img {
        height: 28px;
        max-width: 130px;
    }

    .sidebar-logo img {
        height: 22px;
        max-width: 140px;
    }

    .sidebar {
        width: 240px;
    }

    .footer-brand img {
        height: 28px;
        max-width: 180px;
    }
}