﻿/* ==============================================
   FINEST DAY MALTA PLC - COMPLETE STYLESHEET
   ============================================== */

/* ========== ROOT ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-purple: #002060;
    --purple: #002060;
    --text-color: #2d4a3e;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --border-gray: #e0e0e0;
    --gold: #B4974F;
    --heading-color: #002060;
    --font-main: 'Neue Haas Unica W1G', 'Helvetica Neue', Arial, sans-serif;
    --heading-font: 'CustomiseTobias', 'Helvetica Neue', Arial, sans-serif;
    --nav-font: 'Neue Haas Unica W1G', 'Helvetica Neue', Arial, sans-serif;
}

/* Font Face Declarations remain the same */
@font-face {
    font-family: 'CustomiseTobias';
    src: url('fonts/WEB/Tobias-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-feature-settings: "ss01";
}

@font-face {
    font-family: 'CustomiseTobias';
    src: url('fonts/WEB/Tobias-Regular.woff2') format('woff2'), url('/fonts/WEB/Tobias-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-feature-settings: "ss01";
}

@font-face {
    font-family: 'CustomiseTobias';
    src: url('fonts/WEB/Tobias-Bold.woff2') format('woff2'), url('/fonts/WEB/Tobias-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-feature-settings: "ss01";
}

@font-face {
    font-family: 'CustomiseTobias';
    src: url('fonts/WEB/Tobias-RegularItalic.woff2') format('woff2'), url('/fonts/WEB/Tobias-RegularItalic.woff') format('woff');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'CustomiseTobias';
    src: url('fonts/WEB/Tobias-BoldItalic.woff2') format('woff2'), url('/fonts/WEB/Tobias-BoldItalic.woff') format('woff');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'CustomiseTobias';
    src: url('fonts/WEB/Tobias-Thin.woff2') format('woff2'), url('/fonts/WEB/Tobias-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-feature-settings: "ss01";
}

@font-face {
    font-family: 'Neue Haas Unica W1G';
    src: url('fonts/webFonts/NeueHaasUnicaRegular/font.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-feature-settings: "ss01";
}

@font-face {
    font-family: 'Neue Haas Unica W1G';
    src: url('fonts/webFonts/NeueHaasUnicaLight/font.woff2') format('woff2');
    font-weight: 350;
    font-style: normal;
    font-feature-settings: "ss01";
}

@font-face {
    font-family: 'Neue Haas Unica W1G';
    src: url('fonts/webFonts/NeueHaasUnicaMedium/font.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-feature-settings: "ss01";
}

@font-face {
    font-family: 'Neue Haas Unica W1G';
    src: url('fonts/webFonts/NeueHaasUnicaThin/font.woff') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-feature-settings: "ss01";
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
    font-family: var(--font-main);
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--white);
}

    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

section {
    overflow-x: hidden;
}

/* ========== HEADER & NAVIGATION ========== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-purple);
    padding: 20px 0;
    z-index: 1000;
}

.container-fluid {
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: var(--white) !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    font-family: var(--font-main);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

    .nav-menu a {
        color: var(--white);
        text-decoration: none;
        font-size: 12px;
        letter-spacing: 1.5px;
        font-weight: 400;
        transition: opacity 0.3s;
        font-family: var(--nav-font);
    }

        .nav-menu a:hover,
        .nav-menu a.active {
            color: var(--gold);
            opacity: 1;
        }

/* ========== HAMBURGER MENU ========== */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========== MOBILE MENU OVERLAY ========== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(26, 58, 46, 0.98);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    overflow-y: auto;
}

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.close-menu {
    position: absolute;
    top: 25px;
    right: 40px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 32px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

    .close-menu:hover {
        opacity: 0.7;
    }

.mobile-nav {
    list-style: none;
    text-align: center;
    padding: 20px;
}

    .mobile-nav li {
        margin: 30px 0;
    }

    .mobile-nav a {
        color: var(--white);
        text-decoration: none;
        font-size: 24px;
        letter-spacing: 3px;
        font-weight: 300;
        transition: opacity 0.3s;
        display: block;
        font-family: var(--nav-font);
    }

        .mobile-nav a:hover {
            color: var(--gold);
            opacity: 1;
        }

/* ========== HOMEPAGE - CENTERED LOGO ========== */
.hero-home {
    height: 100vh;
    background: linear-gradient(rgb(179 194 188 / 75%), rgb(28 49 41 / 75%)), url('../assets/images/FES_background_image.png') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-content-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.mountain-logo {
    width: 100%;
    max-width: 400px;
    height: auto;
}

    .mountain-logo img {
        display: block;
        width: 100%;
        height: auto;
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
        background: none;
    }

/* Homepage logo card */
.logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 40px;
    border-radius: 8px; /* slight rounding, modern */
    max-width: 520px;
    width: 90%;
}

    .logo-card img {
        display: block;
        max-width: 100%;
        height: auto;
        object-fit: contain;
        filter: none;
    }

/* ========== BUTTONS ========== */
.btn-outline-white {
    display: inline-block;
    padding: 15px 45px;
    border: 2px solid var(--white);
    color: var(--white);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 500;
    border-radius: 50px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: var(--font-main);
}

    .btn-outline-white:hover {
        background-color: var(--white);
        color: var(--dark-purple);
        transform: translateY(-2px);
    }

.btn-submit {
    width: 100%;
    padding: 18px;
    background-color: var(--purple);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-main);
}

    .btn-submit:hover {
        background-color: var(--dark-purple);
        transform: scale(1.02);
    }

/* ========== ABOUT PAGE - SPLIT LAYOUT ========== */
.about-section {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
}

.about-container {
    display: flex;
    min-height: calc(100vh - 70px);
}

.about-left-panel {
    width: 40%;
    position: relative;
    background: linear-gradient(rgba(26, 58, 46, 0.7), rgba(26, 58, 46, 0.7)), url('../assets/images/FES_background_image.png') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 2, 46, 0.2);
}

.centered-btn {
    position: relative;
    z-index: 2;
}

.about-right-panel {
    width: 60%;
    background-color: var(--light-gray);
    padding: 80px 100px;
    overflow-y: auto;
    overflow-x: hidden;
    word-wrap: break-word;
}

.content-wrapper {
    max-width: 800px;
}

.section-title {
    font-size: 48px;
    font-weight: 300;
    color: var(--purple);
    margin-bottom: 10px;
    letter-spacing: 1px;
    font-family: var(--heading-font);
}

.subsection-title {
    font-family: CustomiseTobias;
    color: var(--heading-color);
}

.title-underline {
    height: 2px;
    background-color: var(--purple);
    margin-bottom: 40px;
}

.about-right-panel p {
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 20px;
    color: var(--text-color);
    text-align: justify;
    font-family: var(--font-main);
}

.indent-text {
    padding-left: 30px;
}

.text-link {
    color: var(--purple);
    text-decoration: underline;
}

    .text-link:hover {
        color: var(--gold);
    }

/* ========== INVESTMENTS PAGE - SPLIT CARDS ========== */
.investments-section {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
    display: flex;
    flex-direction: column;
}

.investment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    flex: 1;
}

.investment-card {
    position: relative;
    background: linear-gradient(rgba(26, 58, 46, 0.7), rgba(26, 58, 46, 0.7)), url('../assets/images/FES_background_image.png') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

    .investment-card:last-child {
        border-right: none;
    }

/*.investment-card.coming-soon {
        background: linear-gradient(rgba(39, 68, 56, 0.85), rgba(39, 68, 56, 0.85)), url('../assets/images/FES_background_image.png') center/cover;
    }*/

.card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
}

.card-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.card-title {
    font-size: 36px;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 40px;
    letter-spacing: 3px;
    line-height: 1.4;
    font-family: var(--heading-font);
}

.investments-info {
    background-color: var(--light-gray);
    padding: 40px;
    text-align: center;
    border-top: 1px solid var(--border-gray);
}

    .investments-info p {
        font-size: 14px;
        color: var(--text-color);
        margin: 0;
        font-family: var(--font-main);
    }

/* ========== INVESTMENT DETAIL PAGE ========== */
.investment-detail-section {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
    background-color: var(--white);
}

.detail-container {
    display: flex;
    min-height: calc(100vh - 70px);
}

.detail-sidebar {
    width: 35%;
    background: linear-gradient(rgba(26, 58, 46, 0.7), rgba(26, 58, 46, 0.7)), url('../assets/images/FES_background_image.png') center/cover;
    padding: 100px 60px;
    color: var(--white);
}

.sidebar-title {
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: 500;
    margin-bottom: 40px;
    text-align: center;
    font-family: var(--font-main);
}

.download-links {
    list-style: none;
}

    .download-links li {
        margin-bottom: 25px;
    }

    .download-links a {
        color: var(--white);
        text-decoration: underline;
        font-size: 14px;
        font-weight: 400;
        transition: opacity 0.3s;
        display: block;
        text-align: center;
        font-family: var(--font-main);
    }

        .download-links a:hover {
            color: var(--gold);
            opacity: 1;
        }

.detail-content {
    width: 65%;
    padding: 100px 120px;
    background-color: var(--light-gray);
    overflow-x: hidden;
    word-wrap: break-word;
}

.detail-title {
    font-size: 42px;
    font-weight: 300;
    color: var(--purple);
    margin-bottom: 10px;
   /* letter-spacing: 2px;
    line-height: 1.3;*/
    font-family: var(--heading-font);
}

.detail-content p {
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 20px;
    color: var(--text-color);
    font-family: var(--font-main);
}

.disclaimer-box {
    background-color: rgba(255, 255, 255, 0.6);
    padding: 25px;
    border-radius: 4px;
    margin-top: 40px;
}

    .disclaimer-box p {
        font-size: 13px;
        line-height: 1.7;
        color: #666;
        margin: 0;
        font-family: var(--font-main);
    }

/* ========== CONTACT PAGE ========== */
.contact-section {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-container {
    width: 100%;
    max-width: 900px;
    padding: 60px;
}

.contact-form-wrapper {
    text-align: center;
}

.subtitle-text {
    font-size: 14px;
    color: #999;
    margin-bottom: 50px;
    font-family: var(--font-main);
}

.contact-form {
    margin-bottom: 60px;
}

.form-group {
    margin-bottom: 20px;
}

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 18px 25px;
        border: none;
        background-color: var(--light-gray);
        font-size: 14px;
        font-family: var(--font-main);
        color: var(--text-color);
        border-radius: 4px;
        transition: background-color 0.3s;
    }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            background-color: #ebebeb;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #999;
        }

.contact-info {
    font-size: 14px;
    line-height: 1.9;
    color: var(--text-color);
    font-family: var(--font-main);
}

    .contact-info a {
        color: var(--purple);
        text-decoration: none;
    }

        .contact-info a:hover {
            color: var(--gold);
            text-decoration: underline;
        }

/* ========== POLICY PAGES ========== */
.policy-section {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
    background-color: var(--white);
    padding: 60px 40px 100px;
}

.policy-container {
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: hidden;
}

.policy-intro {
    margin-bottom: 50px;
}

    .policy-intro p {
        font-size: 13px;
        line-height: 1.8;
        margin-bottom: 20px;
        color: var(--text-color);
        font-family: var(--font-main);
    }

.policy-heading {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 60px 0 30px;
    color: var(--purple);
    font-family: var(--heading-font);
}

/* ========== ACCORDION ========== */
.accordion {
    border-top: 1px solid var(--border-gray);
}

.accordion-items {
    border-bottom: 1px solid var(--border-gray);
}

.accordion-header {
    width: 100%;
    padding: 25px 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--purple);
    text-align: left;
    transition: color 0.3s;
    font-family: var(--font-main);
}

    .accordion-header:hover {
        color: var(--gold);
    }

.accordion-icon {
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s;
    color: var(--gold);
}

.accordion-items.active .accordion-icon {
    transform: rotate(90deg);
}

.accordion-content {
    display: none;
    padding: 0 0 30px 0;
    font-size: 13px;
    line-height: 1.8;
    color: #666;
    font-family: var(--font-main);
}

.accordion-items.active .accordion-content {
    display: block;
}

/* ========== NEWS PAGE STYLES ========== */
.news-section {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
}

.news-container {
    display: flex;
    min-height: calc(100vh - 70px);
}

.news-left-panel {
    width: 35%;
    position: relative;
    background: linear-gradient(rgba(26, 58, 46, 0.7), rgba(26, 58, 46, 0.7)), url('../assets/images/FES_background_image.png') center/cover;
}

.news-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 2, 46, 0.2);
}

.news-right-panel {
    width: 65%;
    background-color: var(--light-gray);
    padding: 80px 100px;
    overflow-y: auto;
}

.news-grid {
    display: grid;
    gap: 40px;
    margin-top: 50px;
}

.news-article {
    border-bottom: 1px solid var(--border-gray);
    padding-bottom: 40px;
    transition: transform 0.3s ease;
}

    .news-article:hover {
        transform: translateX(5px);
    }

    .news-article:last-child {
        border-bottom: none;
    }

.news-date {
    font-size: 12px;
    color: #999;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-family: var(--font-main);
}

.news-title {
    font-size: 24px;
    font-weight: 400;
    color: var(--purple);
    margin-bottom: 15px;
    line-height: 1.4;
    font-family: var(--heading-font);
}

.news-excerpt {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
    font-family: var(--font-main);
}

.news-read-more {
    color: var(--purple);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: opacity 0.3s;
    font-family: var(--font-main);
}

    .news-read-more:hover {
        color: var(--gold);
        opacity: 1;
    }

.news-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-gray);
}

.pagination-btn {
    padding: 10px 20px;
    background: none;
    border: 1px solid var(--purple);
    color: var(--purple);
    font-size: 13px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: var(--font-main);
}

    .pagination-btn:hover,
    .pagination-btn.active {
        background-color: var(--purple);
        color: var(--white);
        transform: translateY(-2px);
    }

/* News Detail Page */
.news-detail-section {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
    background-color: var(--white);
}

.news-detail-header {
    margin-bottom: 40px;
}

.news-detail-body {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-color);
    font-family: var(--font-main);
}

    .news-detail-body h3 {
        font-size: 22px;
        font-weight: 500;
        margin-top: 40px;
        margin-bottom: 20px;
        color: var(--purple);
        font-family: var(--heading-font);
    }

    .news-detail-body p {
        margin-bottom: 20px;
    }

    .news-detail-body strong {
        font-weight: 600;
    }

.detail-list {
    list-style: none;
    padding-left: 0;
    margin: 30px 0;
}

    .detail-list li {
        padding: 12px 0 12px 30px;
        position: relative;
        font-size: 15px;
        line-height: 1.6;
        font-family: var(--font-main);
    }

        .detail-list li:before {
            content: "�";
            position: absolute;
            left: 10px;
            color: var(--gold);
            font-weight: bold;
        }

.recent-news-links {
    list-style: none;
}

    .recent-news-links li {
        margin-bottom: 25px;
    }

    .recent-news-links a {
        color: var(--white);
        text-decoration: none;
        font-size: 13px;
        line-height: 1.6;
        transition: opacity 0.3s;
        display: block;
        text-align: center;
        font-family: var(--font-main);
    }

        .recent-news-links a:hover {
            color: var(--gold);
            opacity: 1;
        }

.sidebar-cta {
    margin-top: 50px;
    text-align: center;
}

.btn-outline-white-small {
    display: inline-block;
    padding: 10px 30px;
    border: 1px solid var(--white);
    color: var(--white);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1.5px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: var(--font-main);
}

    .btn-outline-white-small:hover {
        background-color: var(--white);
        color: var(--dark-purple);
        transform: scale(1.05);
    }

.news-share {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-gray);
}

    .news-share p {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 15px;
        color: var(--purple);
        font-family: var(--font-main);
    }

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    padding: 10px 25px;
    background-color: var(--purple);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-main);
}

    .share-btn:hover {
        background-color: var(--dark-purple);
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

.related-news {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--border-gray);
}

    .related-news h3 {
        font-size: 20px;
        font-weight: 500;
        margin-bottom: 30px;
        color: var(--purple);
        font-family: var(--heading-font);
    }

.related-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.related-item {
    padding: 25px;
    background-color: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
}

    .related-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

.related-date {
    font-size: 11px;
    color: #999;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-family: var(--font-main);
}

.related-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--purple);
    line-height: 1.4;
    font-family: var(--heading-font);
}

/* ========== FOOTER ========== */
.main-footer {
    /*background-color: #0d1f19;*/
    background-color: #002060;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo svg {
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: 30px;
}

    .footer-links a {
        color: var(--white);
        text-decoration: none;
        font-size: 11px;
        letter-spacing: 1px;
        transition: opacity 0.3s;
        font-family: var(--font-main);
    }

        .footer-links a:hover {
            color: var(--gold);
            opacity: 1;
        }

/* ========== COOKIE BANNER ========== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-purple);
    padding: 25px 40px;
    z-index: 9999;
    display: none;
}

    .cookie-banner.show {
        display: block;
    }

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

    .cookie-content p {
        color: var(--white);
        font-size: 13px;
        margin: 0;
        flex: 1;
        font-family: var(--font-main);
    }

    .cookie-content a {
        color: var(--gold);
        text-decoration: underline;
    }

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-text,
.btn-outline,
.btn-solid,
.btn-close {
    padding: 10px 25px;
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
    font-family: var(--font-main);
}

.btn-text {
    background: none;
    border: none;
    color: var(--white);
    text-decoration: underline;
}

.btn-outline {
    background: none;
    border: 1px solid var(--white);
    color: var(--white);
}

    .btn-outline:hover {
        background-color: var(--white);
        color: var(--dark-purple);
    }

.btn-solid {
    background-color: var(--white);
    border: 1px solid var(--white);
    color: var(--dark-purple);
}

    .btn-solid:hover {
        background-color: transparent;
        color: var(--white);
    }

.btn-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 20px;
    padding: 5px 15px;
}

/* ==============================================
   RESPONSIVE DESIGN
   ============================================== */

/* ========== TABLET (1024px and below) ========== */
@media (max-width: 1024px) {
    .container-fluid {
        padding: 0 20px;
    }

    .about-right-panel {
        padding: 60px 50px;
    }

    .detail-content {
        padding: 80px 60px;
    }
}

/* ========== MOBILE (768px and below) ========== */
@media (max-width: 768px) {
    .main-header {
        padding: 15px 0;
    }

    .container-fluid {
        padding: 0 20px;
    }

    .logo {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .hamburger-menu {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .hero-home {
        padding: 20px;
    }

    .mountain-logo {
        width: 280px;
    }

    .hero-content-center {
        gap: 40px;
    }

    .about-container {
        flex-direction: column;
    }

    .about-left-panel {
        width: 100%;
        min-height: 300px;
        order: 1;
    }

    .about-right-panel {
        width: 100%;
        padding: 40px 25px;
        order: 2;
    }

    .section-title {
        font-size: 32px;
    }

    .content-wrapper {
        max-width: 100%;
    }

    .about-right-panel p {
        font-size: 14px;
        line-height: 1.8;
    }

    .investment-grid {
        grid-template-columns: 1fr;
    }

    .investment-card {
        min-height: 400px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .card-title {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .detail-container {
        flex-direction: column;
    }

    .detail-sidebar {
        width: 100%;
        padding: 50px 30px;
        order: 2;
    }

    .detail-content {
        width: 100%;
        padding: 40px 25px;
        order: 1;
    }

    .detail-title {
        font-size: 32px;
        letter-spacing: 1px;
    }

    .download-links a {
        font-size: 12px;
    }

    .contact-container {
        padding: 40px 25px;
    }

    .subtitle-text {
        font-size: 13px;
        margin-bottom: 30px;
    }

    .form-group input,
    .form-group textarea {
        padding: 15px 20px;
        font-size: 13px;
    }

    .policy-section {
        padding: 40px 25px 80px;
    }

    .policy-intro p {
        font-size: 12px;
    }

    .accordion-header {
        padding: 20px 0;
        font-size: 13px;
    }

    .accordion-content {
        font-size: 12px;
    }

    /* News page mobile */
    .news-container {
        flex-direction: column;
    }

    .news-left-panel {
        width: 100%;
        min-height: 250px;
        order: 1;
    }

    .news-right-panel {
        width: 100%;
        padding: 40px 25px;
        order: 2;
    }

    .news-grid {
        gap: 30px;
        margin-top: 30px;
    }

    .news-article {
        padding-bottom: 30px;
    }

    .news-title {
        font-size: 20px;
    }

    .news-excerpt {
        font-size: 13px;
    }

    .news-pagination {
        margin-top: 40px;
        padding-top: 30px;
    }

    .pagination-btn {
        padding: 8px 15px;
        font-size: 12px;
    }

    .news-detail-body h3 {
        font-size: 18px;
    }

    .related-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .share-buttons {
        flex-wrap: wrap;
    }

    .main-footer {
        flex-direction: column;
        gap: 25px;
        padding: 30px 20px;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

        .footer-links a {
            font-size: 10px;
        }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

        .cookie-content p {
            font-size: 12px;
            text-align: center;
        }

    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .btn-text,
    .btn-outline,
    .btn-solid {
        padding: 8px 20px;
        font-size: 11px;
    }

    .btn-outline-white {
        padding: 12px 35px;
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .btn-submit {
        padding: 15px;
        font-size: 13px;
    }
}

/* ========== SMALL MOBILE (480px and below) ========== */
@media (max-width: 480px) {
    .container-fluid {
        padding: 0 15px;
    }

    .logo {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .hamburger-menu {
        width: 24px;
        height: 18px;
    }

    .hero-home {
        padding: 15px;
    }

    .mountain-logo {
        width: 220px;
    }

    .hero-content-center {
        gap: 30px;
    }

    .btn-outline-white {
        padding: 10px 30px;
        font-size: 9px;
    }

    .about-left-panel {
        min-height: 250px;
    }

    .about-right-panel {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 26px;
    }

    .title-underline {
        margin-bottom: 30px;
    }

    .about-right-panel p {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .indent-text {
        padding-left: 20px;
    }

    .investment-card {
        min-height: 350px;
        padding: 20px;
    }

    .card-title {
        font-size: 24px;
        margin-bottom: 30px;
        letter-spacing: 1.5px;
    }

    .investments-info {
        padding: 30px 20px;
    }

        .investments-info p {
            font-size: 13px;
        }

    .detail-sidebar {
        padding: 40px 20px;
    }

    .sidebar-title {
        font-size: 12px;
        letter-spacing: 1.5px;
        margin-bottom: 30px;
    }

    .download-links li {
        margin-bottom: 20px;
    }

    .download-links a {
        font-size: 11px;
    }

    .detail-content {
        padding: 30px 20px;
    }

    .detail-title {
        font-size: 26px;
    }

    .detail-content p {
        font-size: 13px;
    }

    .disclaimer-box {
        padding: 20px;
        margin-top: 30px;
    }

        .disclaimer-box p {
            font-size: 12px;
        }

    .contact-container {
        padding: 30px 20px;
    }

    .contact-info {
        font-size: 13px;
    }

    .policy-section {
        padding: 30px 20px 60px;
    }

    .policy-intro p {
        font-size: 11px;
    }

    .policy-heading {
        font-size: 14px;
        margin: 40px 0 20px;
    }

    .accordion-header {
        padding: 15px 0;
        font-size: 12px;
    }

    .accordion-icon {
        font-size: 20px;
    }

    .accordion-content {
        padding: 0 0 20px 0;
        font-size: 11px;
        line-height: 1.7;
    }

    /* News page small mobile */
    .news-right-panel {
        padding: 30px 20px;
    }

    .news-title {
        font-size: 18px;
    }

    .news-excerpt {
        font-size: 12px;
    }

    .pagination-btn {
        padding: 7px 12px;
        font-size: 11px;
    }

    .mobile-nav a {
        font-size: 18px;
        letter-spacing: 2px;
    }

    .mobile-nav li {
        margin: 25px 0;
    }

    .close-menu {
        top: 20px;
        right: 20px;
        font-size: 28px;
    }

    .main-footer {
        padding: 25px 15px;
    }

    .footer-logo svg {
        width: 60px;
        height: 40px;
    }

    .footer-links a {
        font-size: 9px;
    }

    .cookie-banner {
        padding: 20px;
    }

    .cookie-content p {
        font-size: 11px;
    }

    .btn-text,
    .btn-outline,
    .btn-solid {
        padding: 7px 15px;
        font-size: 10px;
    }

    .btn-close {
        font-size: 18px;
        padding: 5px 10px;
    }
}

/* ========== LANDSCAPE MOBILE ========== */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-home {
        min-height: 100vh;
        padding: 20px;
    }

    .mountain-logo {
        width: 200px;
    }

    .mobile-nav a {
        font-size: 16px;
    }

    .mobile-nav li {
        margin: 15px 0;
    }
}

/* ======== for large screen============== */
@media (min-width: 1200px) {
    .container-fluid {
        padding: 0 30px !important;
    }
}
dl, ol, ul {
    list-style-type: disc;
    margin-top: 0;
    margin-bottom: 1rem;
    list-style-position: outside !important;
}

/* Investment detail sectors row */
.sectors-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    margin: 30px 0 40px;
    text-align: center;
}

.sector-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 120px;
    font-size: 14px;
    color: var(--text-color);
    font-family: var(--font-main);
}

    .sector-item img {
        width: 100px;
        height: 100px;
        object-fit: cover;
        border-radius: 50%;
        margin-bottom: 10px;
    }

/* Optional: responsive stacking on mobile */
@media (max-width: 768px) {
    .sectors-row {
        flex-wrap: wrap;
        gap: 20px;
    }

    .sector-item {
        max-width: 100px;
    }
}
