/* ================================
   COJONT LANDING PAGE STYLES
   ================================ */

/* ---- BASE STYLES ---- */
html, body {
    height: 100%;
}

html {
    scroll-padding-top: 140px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-feature-settings: 'liga' 1, 'calt' 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.main-content {
    flex: 1;
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

/* ---- LAYOUT ---- */
.page-section {
    padding: 6rem 0;
}
.content-section {
    padding: 4rem 0;
}
.page-section h2.section-heading {
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

.page-section h3.s    .p    .page-section {
        padding: 3rem 0;
    }

    html {
        scroll-padding-top: 80px;
    }section {
        padding: 4rem 0;
    }

    html {
        scroll-padding-top: 100px;
    }on-subheading {
    font-size: 1rem;
    font-weight: 400;
    font-style: italic;
    font-family: 'Inter', sans-serif;
    margin-bottom: 4rem;
}

/* ---- NAVIGATION ---- */
#mainNav {
    background: linear-gradient(90deg, #192D52 0%, #1F3459 100%);
    transition: all 0.25s ease-in-out;
}

#mainNav.navbar-shrink {
    background: linear-gradient(90deg, #1A2B4A 0%, #16253F 100%);
}

#mainNav .navbar-brand {
    font-size: 1.75em;
    font-weight: 700;
    color: #ffc800;
}

.navbar-logo {
    height: 96px;
    transition: height 0.3s ease;
}

/* Navigation Links */
#mainNav .navbar-nav .nav-item {
    margin: 0 1.25rem;
}

#mainNav .navbar-nav .nav-link {
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.75rem 0;
    letter-spacing: 0.0625rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

#mainNav .navbar-nav .nav-link:hover,
#mainNav .navbar-nav .nav-link.active {
    color: #ffc800;
}

/* Sign In Button */
#mainNav .navbar-nav .nav-item.signin-item {
    margin-left: auto;
}

#mainNav .navbar-nav .nav-link.signin-link {
    background-color: #fff;
    color: #192D52 !important;
    border-radius: 0.375rem;
    padding: 0.5rem 1rem !important;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 10px;
}

#mainNav .navbar-nav .nav-link.signin-link:hover {
    background-color: #ffc800;
    color: #192D52 !important;
    transform: translateY(-1px);
}



.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto 5rem;
}

.before, 
.after {
    padding: 3rem 2rem;
    border-radius: 18px;
    border: 1px solid #e0e0e0;
}

.before {
    background: #f8f8f8;
    border-left: 4px solid #dc3545;
}

.after {
    background: linear-gradient(135deg, #192D52, #2B4A73);
    color: white;
    border-left: 4px solid #ffc800;
}

.before h3, 
.after h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.before h3 {
    color: #dc3545;
}

.after h3 {
    color: #ffc800;
}

.before-list, 
.after-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.before-list li, 
.after-list li {
    font-size: 1.0625rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.before-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: 600;
}

.after-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffc800;
    font-weight: 600;
}

/* ---- BUTTONS ---- */
.btn-xl {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
}

.btn-social {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.2rem;
    border-radius: 100%;
}

.btn-primary {
    background-color: #ffc800;
    border-color: #ffc800;
}

.btn-primary:hover {
    background-color: #e6b400;
    border-color: #d4a700;
}



/* ---- FOOTER ---- */
.footer {
    background-color: #f8f9fa;
    padding: 2rem 0;
    margin-top: auto;
}
.cojont-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.3);
}

    .cojont-card .card-header {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        padding: 1.5rem 2rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.3);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .cojont-card .card-title {
        margin: 0;
        color: #192D52;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .cojont-card .card-body {
        padding: 2rem;
    }

/* ---- UTILITY CLASSES ---- */
.text-primary {
    color: #ffc800 !important;
}

.bg-primary {
    background-color: #ffc800 !important;
}
/*.breadcrumb {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
    background-color: #e9ecef;
    border-radius: 0.25rem;
}*/
.products-btn {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 8px;
}

    .products-btn:hover {
        background: rgba(255, 255, 255, 1);
        color: #192D52 !important;
        border-color: rgba(255, 255, 255, 1);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
    }

    .products-btn:active {
        transform: translateY(0);
    }

    .products-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        transition: left 0.5s;
    }

    .products-btn:hover::before {
        left: 100%;
    }

/* Responsive adjustments */
@media (max-width: 991px) {
    .products-btn {
        margin: 0.5rem 0;
        display: inline-block;
        text-align: center;
    }
}

/* Add some spacing for desktop */
@media (min-width: 992px) {
    .products-btn {
        margin-left: 1rem;
        margin-right: 1rem;
    }
}
/* Breadcrumb Section Styling */
.breadcrumb-section {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.8) 0%, rgba(233, 236, 239, 0.8) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(25, 45, 82, 0.1);
}

/* COJONT-branded breadcrumb */
.breadcrumb-cojont {
    background: linear-gradient(135deg, rgba(25, 45, 82, 0.05) 0%, rgba(43, 74, 115, 0.05) 100%);
    border: 1px solid rgba(25, 45, 82, 0.15);
    border-radius: 20px;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
}

    .breadcrumb-cojont .breadcrumb-item a {
        color: #6c757d;
        font-weight: 500;
        transition: color 0.2s ease;
    }

        .breadcrumb-cojont .breadcrumb-item a:hover {
            color: #192D52;
        }

    .breadcrumb-cojont .breadcrumb-item.active {
        color: #192D52;
        font-weight: 600;
    }

    .breadcrumb-cojont .breadcrumb-item + .breadcrumb-item::before {
        content: "▸";
        color: #192D52;
        font-weight: bold;
        margin: 0 0.5rem;
    }

/* Responsive breadcrumb */
@media (max-width: 768px) {
    .breadcrumb-section .d-flex {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 1rem;
    }

    .breadcrumb-cojont {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

        .breadcrumb-cojont .breadcrumb-item + .breadcrumb-item::before {
            margin: 0 0.25rem;
        }
}
/* Modal Styling */
.cojont-modal .modal-dialog {
    max-width: 900px;
}

.cojont-modal .modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cojont-modal .modal-header {
    background: linear-gradient(135deg, #192D52 0%, #2B4A73 100%);
    color: white;
    border-radius: 15px 15px 0 0;
    padding: 1.5rem;
}

    .cojont-modal .modal-header .btn-close {
        filter: invert(1);
    }

.cojont-modal .modal-body {
    padding: 1rem;
}

.modal-tab-nav {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

    .modal-tab-nav .nav-link {
        color: #6c757d;
        border: none;
        border-radius: 0;
        padding: 1rem 1.5rem;
        font-weight: 600;
        transition: all 0.3s ease;
    }

        .modal-tab-nav .nav-link:hover {
            color: #192D52;
            background: rgba(25, 45, 82, 0.1);
        }

        .modal-tab-nav .nav-link.active {
            color: #192D52;
            background: white;
            border-bottom: 3px solid #192D52;
        }

.modal-tab-content {
    padding: 2rem;
    min-height: 400px;
}
