:root {
    --home-primary: #0b8b90;
    --home-primary-dark: #066a71;
    --home-surface: #ffffff;
    --home-border: rgba(15, 23, 42, 0.08);
    --home-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
    --home-footer-bg: #081827;
    --home-footer-card: rgba(255, 255, 255, 0.08);
    --home-text: #e8f3f9;
    --home-muted: rgba(232, 243, 249, 0.72);
}

.gsm-header {
    position: relative;
    z-index: 30;
    background: linear-gradient(90deg, var(--home-primary), #087e87);
    box-shadow: 0 10px 30px rgba(6, 106, 113, 0.18);
}

.gsm-theme-header {
    max-width: 1280px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.nav-logo .logo {
    display: block;
    width: 74px;
    height: auto;
}

.nav-container {
    min-width: 0;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
}

.nav-arrow {
    display: none;
}

.nav-scroll-wrap {
    min-width: 0;
    flex: 1 1 auto;
    overflow: visible;
}

.nav-track {
    width: 100%;
}

.nav-links {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 16px;
    border-radius: 999px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links li.is-open > a {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.nav-links .chevron {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.currency-btn,
.nav-auth .btn {
    min-height: 42px;
    border-radius: 12px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    box-shadow: none !important;
}

.currency-btn {
    min-width: 96px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
}

.currency-btn:hover,
.currency-btn:focus {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
}

.currency-dropdown {
    min-width: 110px;
}

.nav-auth {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-auth .btn-primary,
.nav-auth .dropdown-toggle,
.nav-auth .btn {
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08) !important;
    color: #fff !important;
    padding: 10px 16px !important;
}

.nav-auth .btn:hover,
.nav-auth .btn:focus,
.nav-auth .dropdown-toggle:hover,
.nav-auth .dropdown-toggle:focus {
    background: rgba(255, 255, 255, 0.16) !important;
    color: #fff !important;
}

.nav-auth .dropdown-menu {
    min-width: 240px;
}

.gsm-dropdown,
.currency-dropdown,
.nav-auth .dropdown-menu {
    background: var(--home-surface);
    border: 1px solid var(--home-border);
    border-radius: 16px;
    box-shadow: var(--home-shadow);
    padding: 10px;
}

.gsm-dropdown a,
.currency-dropdown .dropdown-item,
.nav-auth .dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 10px 14px;
    border-radius: 10px;
    color: #1f2937;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
}

.gsm-dropdown a:hover,
.currency-dropdown .dropdown-item:hover,
.nav-auth .dropdown-menu .dropdown-item:hover {
    background: rgba(11, 139, 144, 0.08);
    color: var(--home-primary);
}

.top-footer {
    margin-top: 44px;
    background: linear-gradient(135deg, var(--home-primary), #0d2c49);
}

.top-footer-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 20px;
}

.top-footer .row > div {
    padding: 14px 16px;
    border-radius: 16px;
    background: var(--home-footer-card);
}

.top-footer-title {
    letter-spacing: 0.01em;
}

.footer {
    background: var(--home-footer-bg);
    color: var(--home-text);
}

.footer-main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 42px 20px 30px;
}

.foot-grid {
    display: grid;
    grid-template-columns: minmax(240px, 1.2fr) repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.col-title {
    margin-bottom: 14px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.ct {
    display: grid;
    gap: 12px;
}

.ct-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--home-muted);
    font-size: 14px;
    line-height: 1.55;
}

.ct-item i {
    margin-top: 2px;
    color: #87ecf0;
}

.ct-item a,
.ct-item span {
    color: inherit;
    text-decoration: none;
}

.socs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sc {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.sc:hover {
    background: rgba(135, 236, 240, 0.22);
    color: #fff;
    transform: translateY(-1px);
}

.col-links {
    display: grid;
    gap: 10px;
}

.col-link {
    color: var(--home-muted);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    transition: color 0.2s ease;
}

.col-link:hover {
    color: #fff;
}

.app-col-desc {
    margin: 0 0 14px;
    color: var(--home-muted);
    font-size: 14px;
    line-height: 1.6;
}

.app-btns {
    display: grid;
    gap: 12px;
}

.abt {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    text-decoration: none;
}

.abt:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
}

.abt i {
    font-size: 22px;
}

.abt-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.abt-text small {
    color: var(--home-muted);
}

.abt-text strong {
    font-size: 15px;
    font-weight: 700;
}

@media (max-width: 1199px) {
    .foot-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .first-footer {
        grid-column: 1 / -1;
    }
}

@media (max-width: 991px) {
    .gsm-theme-header {
        flex-wrap: wrap;
        gap: 14px;
    }

    .nav-container {
        width: 100%;
        order: 3;
    }

    .nav-links {
        gap: 8px;
    }

    .nav-links a {
        padding: 10px 14px;
        font-size: 14px;
    }

    .top-footer .row > div {
        padding: 12px 14px;
    }

    .foot-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .gsm-theme-header {
        padding: 10px 14px;
    }

    .nav-logo .logo {
        width: 64px;
    }

    .top-footer-content,
    .footer-main {
        padding-left: 14px;
        padding-right: 14px;
    }

    .foot-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        width: 100%;
    }
}
