/*-------------------
        Fonts
-------------------*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

html,
body {
    margin: 0;
    padding: 0;
	min-height: 100vh;
    background-color: #FFF;
}

* {
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
}

p {
    margin: 0 0 10px;
}

.h1, .h2, .h3, h1, h2, h3 {
    margin-top: 20px;
    margin-bottom: 10px;
}

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: 0;
    margin-left: 0;
}

a,
a:hover,
a:focus {
    color: inherit;
    cursor: pointer;
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* Header Top Bar */
.header-top-bar {
    background-color: #48BB78;
    color: #FFF;
    font-size: 10px;
    padding: 6px 0;
}

.top-bar-content {
    text-align: right;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Navigation */
.glc-nav {
    background-color: #FFF;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 16px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 3px solid #48BB78;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-circle-inner {
    width: 16px;
    height: 16px;
    background-color: #48BB78;
    border-radius: 50%;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-green {
    color: #1F2937;
}

.logo-club {
    font-weight: 300;
    color: #1F2937;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: #4B5563;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #48BB78;
}

.btn-nav-cta {
    background-color: #48BB78;
    color: #FFF !important;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(72, 187, 120, 0.3);
    transition: all 0.3s ease;
}

.btn-nav-cta:hover {
    background-color: #3da568;
    transform: translateY(-1px);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: #4B5563;
    cursor: pointer;
    padding: 0;
}

.mobile-menu {
    display: none;
}

/* Header / Hero Section */
header.index {
    background-color: #FFF;
    position: relative;
    overflow: visible;
    padding: 150px 0 80px 0;
}

.hero-wrapper {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-container {
    background-color: #E6F7ED;
    border-radius: 30px;
    position: relative;
    overflow: visible;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.hero-section {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 60px;
	position: relative;
}

.hero-left {
    flex: 1;
    padding-right: 40px;
    z-index: 10;
    max-width: 50%;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #4B5563;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.hero-title {
    font-size: 65px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0;
    letter-spacing: -2px;
    margin-top: 0;
}

.title-green {
    color: #55E085;
    display: block;
}

.title-blue {
    color: #3B82F6;
    display: block;
}

.hero-description {
    color: #4B5563;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 32px;
    font-weight: 500;
}

.btn-get-started {
    background-color: #66E278;
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 6px;
    box-shadow: 0 4px 14px rgba(72, 187, 120, 0.39);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-get-started:hover {
    background-color: #55d067;
    transform: translateY(-2px);
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: absolute;
    right: 10%;
}

.hero-phone {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 40px;
    position: relative;
    z-index: 20;
    margin-top: -100px;
    margin-bottom: -100px;
    transition: transform 0.5s ease;
}

.hero-phone:hover {
    transform: scale(1.02);
}

/* Features Section */
.features-section {
    padding: 48px 0;
    background-color: #FFF;
}

.features-section .container {
    max-width: 1200px;
    width: 90%;
}

.feature-panel {
    min-height: 350px;
    display: flex;
    align-items: center;
    padding: 64px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.feature-panel:first-child {
    border-radius: 30px 30px 0 0;
}

.feature-panel:last-child {
    border-radius: 0 0 30px 30px;
}

.feature-content {
    width: 40%;
    background: white;
    border-radius: 10px;
    padding: 0 20px;
    border: 2px inset #51b8b0;
}

.feature-align-right {
    margin-left: auto;
    text-align: left;
}

.feature-align-left {
    margin-right: auto;
    text-align: left;
}

.feature-title {
    font-size: 26px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: #34ad81;
}

.feature-description {
    color: #374151;
    line-height: 1.7;
    font-size: 14px;
    font-weight: 500;
}

/* Access Banner Section */
.access-banner-section {
    background-color: #48BB78;
    padding: 64px 0;
	text-align: center;
}

.access-banner-content {
    max-width: 900px;
    margin: 0 auto;
}

.access-banner-title {
    color: #FFF;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
}

.access-banner-instant {
    display: block;
    font-size: 60px;
    text-transform: uppercase;
    letter-spacing: -2px;
    font-weight: 800;
}

.access-banner-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 32px;
    font-weight: 500;
}

.btn-join-club {
    background-color: #FFF;
    color: #2F855A;
    font-size: 20px;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 6px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-join-club:hover {
    background-color: #F3F4F6;
    transform: translateY(-2px);
}


/* Footer */
.glc-footer {
    background-color: #55B584;
    color: #FFF;
    padding: 40px 0;
    font-size: 12px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.footer-left {
    text-align: left;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.footer-logo .logo-text {
    font-size: 18px;
}

.footer-logo .logo-circle {
    width: 24px;
    height: 24px;
    border: 2px solid #FFF;
}

.footer-logo .logo-circle-inner {
    width: 12px;
    height: 12px;
    background-color: #FFF;
}

.footer-logo .logo-green,
.footer-logo .logo-club {
    color: #FFF;
}

.footer-contact {
    opacity: 0.9;
    margin: 0;
}

.footer-middle {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 4px;
}

.footer-middle a {
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-middle a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-right {
    text-align: right;
    opacity: 0.8;
    line-height: 1.7;
    max-width: 300px;
}

.footer-right p {
	margin: 0;
}

.description, .page-title, table p {
    color: #fff;
}

main#terms {
    padding: 20px 0;
}

.nav-logo img, .footer-logo img {
    max-width: 250px;
}

/* Responsive Styles */

/* Medium Devices, Tablets */
@media only screen and (max-width: 992px) {
    .hero-title {
        font-size: 56px;
    }

    .feature-panel {
        padding: 15px 10px;
    }

    .feature-content {
        width: 50%;
    }

    .feature-title {
        font-size: 32px;
    }

    .contact-title {
        font-size: 48px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-left,
    .footer-right {
	text-align: center;
}

    .footer-logo {
    justify-content: center;
}

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

/* Small Devices, Tablets */
@media only screen and (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block;
    }

    .top-bar-content {
        text-align: center;
        font-size: 10px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .mobile-menu {
        display: none;
        flex-direction: column;
        gap: 16px;
        padding: 20px 0;
        border-top: 1px solid #E5E7EB;
        margin-top: 16px;
    }

    .mobile-menu.active {
        display: flex;
    }

    .mobile-menu a {
        color: #4B5563;
        font-weight: 500;
        padding: 12px 0;
        border-bottom: 1px solid #F3F4F6;
    }

    .btn-mobile-cta {
        background-color: #48BB78;
        color: #FFF !important;
        font-weight: 600;
        padding: 12px 0;
        border-radius: 6px;
        text-align: center;
        border: none;
    }

    header.index {
        padding: 40px 0 40px;
    }

    .hero-wrapper {
        width: 95%;
    }

    .hero-container {
        overflow: hidden;
    }

    .hero-section {
        flex-direction: column;
        padding: 40px 24px 40px;
        gap: 30px;
    }

    .hero-left {
        padding-right: 0;
        text-align: center;
        max-width: 100%;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-description {
        font-size: 18px;
    }

    .hero-right {
        width: 100%;
        justify-content: center;
        margin-right: 0;
        position: static;
        right: auto;
    }

    .hero-phone {
        max-width: 280px;
        margin-top: 0;
        margin-bottom: 0;
    }

    .features-section {
        padding: 24px 0;
    }

    .features-section .container {
        position: relative;
        background-image: url('/assets/brands/glc/images/cascade_mobile.png');
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        padding: 40px 0;
    }

    .feature-panel {
        padding: 15px 10px;
        min-height: auto;
        background-image: none !important;
    }

    .feature-panel.feature-3 {
        display: none;
    }

    .feature-content {
        width: 90%;
        text-align: center !important;
        margin: 0 auto;
        background: #ffffffcc;
        padding: 0 5px;
    }

    .feature-align-right,
    .feature-align-left {
        margin-left: auto;
        margin-right: auto;
    }

    .feature-title {
        font-size: 20px;
        margin-bottom: 0;
    }

    .feature-description {
        font-size: 9px;
    }

    .access-banner-section {
        padding: 48px 0;
    }

    .access-banner-title {
        font-size: 28px;
    }

    .access-banner-instant {
        font-size: 42px;
    }

    .access-banner-description {
        font-size: 18px;
    }


    .glc-footer {
        font-size: 12px;
        padding: 32px 0;
    }

    .footer-content {
        gap: 24px;
    }
}

/* Extra Small Devices, Phones */
@media only screen and (max-width: 480px) {
    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-description {
        font-size: 16px;
    }

    .btn-get-started,
    .btn-join-club {
        font-size: 18px;
        padding: 14px 32px;
    }

    .feature-title {
        font-size: 20px;
    }

    .access-banner-instant {
        font-size: 36px;
    }

}
