/* ************************
   3.1 Hero Section
************************* */
.hero-section-container {
    --top-header-gap: 6rem;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    background-size: unset;
}

.hero-section-container {
    display: flex;
    align-items: center;
    padding: 1.5rem 0;
}

@media (min-width: 991.98px) {
    .hero-section-container {
        min-height: 100vh;
    }

    .hero-section-container {
        padding: 3rem 0;
    }
}

.hero-section-left-side {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.package-type-badge {
    background: rgba(var(--rs-primary-rgb), .2);
    border: 1px solid rgba(var(--rs-primary-rgb), .5);
    color: rgba(var(--rs-text-dark-light-rgb), .85);
    width: fit-content;
    padding: .375rem .85rem;
    border-radius: .9rem;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.package-type-badge i {
    line-height: .8;
}

.package-name {
    display: flex;
    flex-direction: column;
    gap: 8px;
    line-height: 1.1;
}

.package-name-heading {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--rs-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
    margin: 0;
}

.package-name .main-title {
    font-size: 3rem;
    /* Reduced from 4.25rem for minimal look */
    font-weight: 800;
    color: var(--rs-body-text-color);
    letter-spacing: -1.2px;
    margin: 0;
}

.package-name .main-title .brand-accent {
    color: var(--rs-primary);
}

@media (max-width: 768px) {
    .package-name .main-title {
        font-size: 2.25rem;
        letter-spacing: -0.8px;
    }

    .package-name-heading {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 480px) {
    .package-name .main-title {
        font-size: 1.85rem;
    }

    .package-name-heading {
        font-size: 0.7rem;
    }
}

.package-description {
    color: rgba(var(--bs-section-container-bg), .85);
    font-size: 14px;
    line-height: 1.5rem;
    padding: 0;
    margin: 0;
}

.package-features-section {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    font-size: .75rem;
    line-height: 1;
}

.package-features-section-border {
    background-color: var(--rs-body-text-color);
    width: 50%;
    height: 2px;
    opacity: 50%;
}

.package-features-section .package-features-item {
    padding-inline-end: .5rem;
    border-inline-end: 1px solid #ddd;
}








.section-hero-button-group {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: .75rem;
    flex-wrap: wrap;
}

.get-started-btn {
    --gradient-start: #0070f3;
    --gradient-end: #00a6ff;

    position: relative;
    overflow: hidden;
    padding: 0.75rem 1.5rem;
    font-size: 0.8rem;
    border-radius: .25rem;
    border: none;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    width: max-content;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 6px 15px -3px rgba(0, 112, 243, 0.25);
    isolation: isolate;
    cursor: pointer;
}

.get-started-btn.active-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 250%;
    height: 100%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.5) 50%,
            rgba(255, 255, 255, 0) 100%);
    animation: shimmer-skeleton 2s infinite;
    z-index: 0;
    opacity: .8;
    pointer-events: none;
}

.get-started-btn.get-started-danger {
    --gradient-start: #dc3545;
    --gradient-end: #e75262;
}

.get-started-btn.get-started-danger::before {
    animation: shimmer-skeleton 3s infinite;
}

.get-started-btn.get-started-danger::before {}

@keyframes shimmer-skeleton {
    0% {
        left: -150%;
    }

    100% {
        left: 100%;
    }
}

.get-started-btn div.button-content {
    display: flex;
    flex-direction: column;
    gap: .125rem;
}

.get-started-btn div.button-content .title {
    font-size: .75rem;
    font-weight: 600;
}

.get-started-btn div.button-content .sub-title {
    font-size: 1rem;
    font-weight: 800;
}

.get-started-btn div.button-icon {
    font-size: 2rem;
    display: flex;
    align-items: center;
    line-height: .85;
}



/* Global Premium Section Headers */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    background: rgba(var(--rs-primary-rgb), 0.08);
    color: var(--rs-primary);
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.section-title-premium {
    font-size: 2.25rem;
    /* Reduced from 3rem */
    font-weight: 800;
    color: var(--rs-body-text-color);
    letter-spacing: -0.8px;
    line-height: 1.2;
    margin-bottom: 12px;
}

.section-title-premium .brand-accent {
    color: var(--rs-primary);
}

.section-subtitle-premium {
    font-size: 0.95rem;
    /* Reduced from 1.1rem */
    color: var(--rs-body-text-color);
    opacity: 0.7;
    max-width: 600px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .section-title-premium {
        font-size: 1.85rem;
    }
}




/* ************************
   3.3 Features Section
************************* */
.section-features-area {
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.section-features-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.section-features-header .section-features-badge {
    border: 1px solid rgba(var(--bs-primary-rgb), .5);
    width: max-content;
    padding: .25rem 1rem;
    border-radius: 1.5rem;
}

.section-features-header h3 {
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
}

.section-features-area {
    padding: 100px 0;
}

.section-features-area .feature-item {
    padding: 2rem;
    background: var(--rs-card-bg);
    border: 1px solid var(--rs-border-color);
    border-radius: 12px;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.section-features-area .feature-item:hover {
    border-color: var(--rs-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-icon-box {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--rs-primary-rgb), 0.08);
    color: var(--rs-primary);
    border-radius: 8px;
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.section-features-area .feature-item h5 {
    font-size: 1rem;
    /* 16px */
    font-weight: 700;
    color: var(--rs-body-text-color);
    margin: 0;
}

.section-features-area .feature-item p {
    font-size: 0.875rem;
    /* 14px */
    color: var(--rs-body-text-color);
    opacity: 0.7;
    line-height: 1.6;
    margin: 0;
}



/* ************************
   3.4 Author Section
************************* */
.section-author-area {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.author-image-container {
    width: 100%;
    max-width: 380px;
    height: 480px;
    border-radius: 30px;
    background: var(--rs-card-bg);
    border: 1px solid var(--rs-border-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

[theme="dark"] .author-image-container {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.author-image-container .author-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    position: absolute;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.1);
}

.author-image-container .author-image.show {
    opacity: 1;
    transform: scale(1);
}

.author-name {
    font-size: 2.5rem;
    /* Reduced from 3.5rem */
    font-weight: 800;
    color: var(--rs-body-text-color);
    letter-spacing: -1.2px;
    margin-bottom: 8px;
    line-height: 1;
}

.author-location {
    font-size: 0.85rem;
    /* Reduced */
    font-weight: 700;
    color: var(--rs-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.author-bio {
    font-size: 0.95rem;
    /* Reduced */
    line-height: 1.7;
    color: var(--rs-body-text-color);
    opacity: 0.8;
    margin-bottom: 30px;
    max-width: 500px;
}

.author-support-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: var(--rs-card-bg);
    color: var(--rs-body-text-color);
    border: 1px solid var(--rs-border-color);
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
}

.author-support-button:hover {
    background: var(--rs-primary);
    color: #fff;
    border-color: var(--rs-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(var(--rs-primary-rgb), 0.2);
}

.author-support-button i {
    font-size: 1.2rem;
}

/* Social Connect Bar */
.section-social-connect {
    margin-top: 60px;
    padding: 40px 0;
    background: rgba(var(--rs-primary-rgb), 0.03);
    border-top: 1px solid rgba(var(--rs-primary-rgb), 0.05);
    border-bottom: 1px solid rgba(var(--rs-primary-rgb), 0.05);
}

[theme="dark"] .section-social-connect {
    background: rgba(255, 255, 255, 0.02);
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--rs-body-text-color);
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.social-link:hover {
    opacity: 1;
    background: var(--rs-card-bg);
    color: var(--rs-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.social-icon i {
    font-size: 1.5rem;
}

@media (max-width: 991px) {
    .author-name {
        font-size: 2.75rem;
    }

    .author-image-container {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .author-name {
        font-size: 2.25rem;
    }

    .author-bio {
        font-size: 1rem;
    }

    .first-row {
        flex-direction: column-reverse;
    }
}

/* Responsive Layout */
@media (max-width: 768px) {
    .social-link {
        justify-content: center;
    }

    .social-icon {
        font-size: 20px;
    }

    .social-link span {
        font-size: 14px;
    }
}

/* ************************
   3.5 FAQ Section
************************* */
.section-faq-header {
    margin-bottom: 40px;
}

.faq-page-accordion .accordion-item {
    background-color: var(--rs-card-bg);
    border: 1px solid var(--rs-border-color);
    border-radius: 12px !important;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-page-accordion .accordion-item:hover {
    border-color: var(--rs-primary);
}

.faq-page-accordion .accordion-button {
    padding: 18px 25px;
    font-size: 0.95rem;
    /* 15px */
    font-weight: 700;
    color: var(--rs-body-text-color);
    background-color: transparent;
    box-shadow: none;
    border: none;
}

.faq-page-accordion .accordion-button:not(.collapsed) {
    color: var(--rs-primary);
    background-color: rgba(var(--rs-primary-rgb), 0.02);
}

.faq-page-accordion .accordion-button::after {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.faq-page-accordion .accordion-body {
    padding: 0 25px 25px;
    font-size: 0.875rem;
    /* 14px */
    line-height: 1.7;
    color: var(--rs-body-text-color);
    opacity: 0.8;
}

[theme="dark"] .faq-page-accordion .accordion-item {
    background-color: rgba(255, 255, 255, 0.02);
}

.faq-page-accordion.accordion .accordion-button:not(.collapsed):after {
    transform: rotate(180deg);
}

.faq-page-accordion.accordion .accordion-button:not(.collapsed) {
    color: var(--rs-primary);
    font-weight: 700;
}

.faq-accordion-top-section {
    display: flex;
    align-items: center;
    padding: 2rem 0 2.5rem 0;
}

.faq-accordion-top-section img {
    height: 80px;
}

/* ************************
   3.6: Review Section
************************* */
.review-section-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.review-section-container {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.review-grid {
    column-count: 3;
    column-gap: 20px;
    margin-top: 40px;
    max-height: 800px;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

.review-item {
    break-inside: avoid;
    margin-bottom: 20px;
}

.review-card {
    background: var(--rs-card-bg);
    border: 1px solid var(--rs-border-color);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: var(--rs-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--rs-border-color);
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-user h6 {
    font-size: 0.95rem;
    /* 15px */
    font-weight: 700;
    margin: 0;
}

.user-address {
    font-size: 0.75rem;
    /* 12px */
    opacity: 0.6;
}

.review-content p {
    font-size: 0.875rem;
    /* 14px */
    line-height: 1.6;
    color: var(--rs-body-text-color);
    opacity: 0.8;
    margin-bottom: 15px;
}

.review-rating-date {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(var(--rs-primary-rgb), 0.05);
}

.stars {
    font-size: 0.8rem;
}

.review-date {
    font-size: 0.75rem;
    opacity: 0.5;
}

.review-section-container .stars span {
    font-size: 1rem;
}

.review-section-container .review-container {
    position: relative;
    overflow: hidden;
}

.review-section-container .review-overlay-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    z-index: 5;
}

.review-overlay-container button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: var(--rs-primary);
    border: none;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-overlay-container button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(var(--rs-primary-rgb), 0.3);
    background: var(--rs-primary);
    filter: brightness(110%);
}

.review-overlay-container button+button {
    background: var(--rs-card-bg);
    color: var(--rs-body-text-color);
    border: 1px solid var(--rs-border-color);
    box-shadow: none;
}

.review-overlay-container button+button:hover {
    background: rgba(var(--rs-primary-rgb), 0.05);
    border-color: var(--rs-primary);
    color: var(--rs-primary);
}

/* ************************
   3.7 Packages Section
************************* */

.laravel-packages-container .card {
    background-color: var(--rs-card-bg);
    box-shadow: var(--rs-card-bg-shadow);
    color: var(--rs-card-text-color);
}

/* ************************
   3.8 Contribute Section
************************* */
.section-support-area {
    color: var(--rs-text-dark-light);
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.section-support-header {
    text-align: center;
}

.section-support-header h3 {
    font-size: 2rem;
    font-weight: 600;
}

.support-box-container {
    text-align: center;
    border: 1px solid var(--rs-border-color);
    border-radius: 16px;
    padding: 40px 30px;
    background: var(--rs-card-bg);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.support-box-container:hover {
    border-color: var(--rs-primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

[theme="dark"] .support-box-container:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.support-box-container h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.support-box-container p {
    font-size: .8rem;
    margin: 0;
}

.support-box-container .section-support-image img {
    width: 100%;
    height: 50px;
    object-fit: contain;
}

.section-support-area .support-action-button {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(180deg, #121212, #242424 65.62%);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.section-support-area .support-action-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 10%, transparent 60%);
    transition: all 0.4s ease-in-out;
    transform: translate(-50%, -50%) scale(0);
}

.section-support-area .support-action-button:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.section-contribute-area {
    padding: 80px 0;
    border-top: 1px solid rgba(var(--rs-primary-rgb), 0.05);
}

.section-contribute-box {
    padding: 3rem;
    background: var(--rs-card-bg);
    border: 1.5px dashed rgba(var(--rs-primary-rgb), 0.3);
    border-left: 6px solid var(--rs-primary);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.section-contribute-box:hover {
    border-color: var(--rs-primary);
    background: rgba(var(--rs-primary-rgb), 0.01);
}

[theme="dark"] .section-contribute-box {
    background: rgba(255, 255, 255, 0.02);
}

.section-contribute-box h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--rs-body-text-color);
    margin-bottom: 12px;
}

.section-contribute-box p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--rs-body-text-color);
    opacity: 0.7;
    max-width: 600px;
}

.contribute-support-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: var(--rs-primary);
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.contribute-support-button:hover {
    background: #e02d26;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--rs-primary-rgb), 0.3);
    color: #fff;
}

[theme="dark"] .contribute-support-button {
    background: var(--rs-primary);
    color: #fff;
}

.section-contribute-area .contribute-support-button:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.section-contribute-area .contribute-support-button .star-count-text {
    border-inline-start: 1px solid #ddd;
    padding-inline-start: 12px;
    margin-inline-start: 12px;
    display: none;
    transition: display 1s ease-in-out;
}

.section-contribute-area .contribute-support-button .star-count {
    padding-inline-end: 5px;
}

/* ************************
  3.7 Search Modal Backdrop
************************* */
.search-input-component {
    --search-size: 38px;
    all: unset;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--search-size);
    white-space: nowrap;
    background: rgba(var(--rs-primary-rgb), 0.04);
    border: 1px solid var(--rs-border-color);
    border-radius: 10px;
    padding: 0 12px;
    font-size: 13px;
    color: var(--rs-body-text-color);
    transition: all 0.2s ease;
    gap: .75rem;
}

.search-input-component:hover {
    background: rgba(var(--rs-primary-rgb), 0.08);
    border-color: var(--rs-primary);
}

[theme="dark"] .search-input-component {
    background: rgba(255, 255, 255, 0.04);
}

[theme="dark"] .search-input-component:hover {
    background: rgba(255, 255, 255, 0.08);
}

.search-input-component kbd {
    height: 22px;
    line-height: 22px;
    border-radius: 6px;
    padding: 0 6px;
    font-size: 11px;
    color: var(--rs-body-text-color);
    background: rgba(var(--rs-primary-rgb), 0.1);
    border: 1px solid rgba(var(--rs-primary-rgb), 0.1);
    font-weight: 700;
    font-family: inherit;
    opacity: 0.8;
}

.search-input-component:hover kbd {
    background: var(--rs-primary);
    color: #fff;
    opacity: 1;
}

[theme="dark"] .search-input-component kbd {
    background: rgba(255, 255, 255, 0.1);
}

.github-icon {
    color: var(--rs-body-text-color);
    transition: all 0.3s ease;
    opacity: 0.8;
}

.github-icon:hover {
    color: var(--rs-primary);
    transform: translateY(-2px);
    opacity: 1;
}

/* ************************
   3.8 Standard Premium Modals
************************* */
.modal-premium-vault {
    background-color: var(--rs-card-bg);
    border: 1px solid var(--rs-border-color);
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.modal-premium-vault .modal-header {
    background: rgba(var(--rs-primary-rgb), 0.02);
    border-bottom: 1px solid var(--rs-border-color);
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-premium-vault .modal-title {
    font-size: 0.938rem;
    /* 15px */
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--rs-primary);
}

.modal-premium-vault .modal-body {
    padding: 32px;
}

.social-login-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 12px;
}

.social-login-btn-premium {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--rs-body-bg-color);
    border: 1px solid var(--rs-border-color);
    border-radius: 8px;
    color: var(--rs-body-text-color);
    font-size: 0.813rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-login-btn-premium:hover {
    background: var(--rs-primary);
    border-color: var(--rs-primary);
    color: #fff;
    transform: translateY(-2px);
}

/* Institutional Star Rating */
.star-rating-official {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 8px;
}

.star-rating-official .star-label {
    font-size: 2rem;
    color: var(--rs-border-color);
    cursor: pointer;
    transition: color 0.15s ease;
}

.star-rating-official input:checked~.star-label,
.star-rating-official .star-label:hover,
.star-rating-official .star-label:hover~.star-label {
    color: #fbbf24;
}

/* Institutional Form Controls */
.official-textarea {
    background: var(--rs-body-bg-color);
    border: 1px solid var(--rs-border-color);
    border-radius: 8px;
    padding: 15px;
    font-size: 0.875rem;
    color: var(--rs-body-text-color);
    transition: all 0.2s ease;
    width: 100%;
}

.official-textarea:focus {
    border-color: var(--rs-primary);
    box-shadow: 0 0 0 3px rgba(var(--rs-primary-rgb), 0.1);
    outline: none;
}

/* Institutional Submit Button */
.btn-official-submit {
    background: var(--rs-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px;
    font-size: 0.813rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.2s ease;
    width: 100%;
}

.btn-official-submit:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(var(--rs-primary-rgb), 0.2);
}

.btn-official-submit:hover {
    background: var(--rs-primary-hover, var(--rs-primary));
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(var(--rs-primary-rgb), 0.25);
}

[theme="dark"] .modal-premium-vault {
    background: #000;
}

.bg-primary-soft {
    background: rgba(var(--rs-primary-rgb), 0.1);
}

.modal-icon-box {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--rs-primary);
    font-size: 1.25rem;
}

/* Global Search Modal - Premium Vault Concept */
.search-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    justify-content: center;
    align-items: flex-start;
    padding-top: 15vh;
}

.search-modal.show {
    display: flex;
}

.search-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.search-modal-content {
    position: relative;
    background: var(--rs-card-bg);
    border: 1px solid var(--rs-border-color);
    border-radius: 14px;
    padding: 0;
    z-index: 10;
    width: 95%;
    max-width: 600px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    animation: modalSlide 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalSlide {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.search-input-wrapper {
    padding: 16px;
    background: rgba(var(--rs-primary-rgb), 0.02);
    border-bottom: 1px solid var(--rs-border-color);
}

.search-field {
    width: 100%;
    background: transparent !important;
    border: none !important;
    font-size: 15px;
    font-weight: 500;
    color: var(--rs-body-text-color);
    box-shadow: none !important;
    padding: 12px 12px 12px 40px !important;
}

.search-field::placeholder {
    color: var(--rs-body-text-color);
    opacity: 0.4;
}

.search-modal-result {
    padding: 12px;
    max-height: 400px;
    overflow-y: auto;
}

/* Custom Scrollbar */
.search-modal-result::-webkit-scrollbar {
    width: 5px;
}

.search-modal-result::-webkit-scrollbar-thumb {
    background: var(--rs-primary);
    border-radius: 10px;
}

.search-modal-result::-webkit-scrollbar-track {
    background: transparent;
}

.search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    transition: all 0.2s ease;
    cursor: pointer;
    color: var(--rs-body-text-color);
    margin-bottom: 4px;
}

.search-item:hover {
    background: rgba(var(--rs-primary-rgb), 0.06);
    color: var(--rs-primary);
}

.search-icon {
    font-size: 14px;
    opacity: 0.5;
}

.search-item:hover .search-icon {
    opacity: 1;
}

.search-text {
    font-size: 13px;
    font-weight: 600;
}

/* ************************
   3.5: Counter Section
************************* */
.package-counter-section {
    padding: 80px 0;
    position: relative;
    background: rgba(var(--rs-primary-rgb), 0.02);
    border-top: 1px solid rgba(var(--rs-primary-rgb), 0.05);
    border-bottom: 1px solid rgba(var(--rs-primary-rgb), 0.05);
}

.stat-box {
    text-align: center;
    padding: 40px 24px;
    background: var(--rs-card-bg);
    border: 1px solid var(--rs-border-color);
    border-radius: 16px;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.stat-box:hover {
    transform: translateY(-4px);
    border-color: var(--rs-primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

[theme="dark"] .stat-box {
    background: rgba(255, 255, 255, 0.02);
}

.stat-icon-wrapper {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--rs-primary);
    background: rgba(var(--rs-primary-rgb), 0.08);
    border-radius: 12px;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.stat-box:hover .stat-icon-wrapper {
    background: var(--rs-primary);
    color: #fff;
    transform: scale(1.05);
}

.stat-number {
    font-size: 2rem;
    /* Reduced from 2.75rem */
    font-weight: 800;
    color: var(--rs-body-text-color);
    letter-spacing: -1px;
    margin-bottom: 6px;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    /* Reduced from 0.85rem */
    font-weight: 700;
    color: var(--rs-body-text-color);
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

@media (max-width: 991px) {
    .stat-number {
        font-size: 2.25rem;
    }
}

@media (max-width: 767px) {
    .package-counter-section {
        padding: 60px 0;
    }

    .stat-box {
        padding: 2rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* ************************
   User Profile Hero (Institutional)
************************* */
.user-profile-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    padding: 100px 0;
}

.profile-hero-content {
    position: relative;
    z-index: 2;
}

.profile-badge {
    display: inline-flex;
    padding: 6px 16px;
    background: rgba(var(--rs-primary-rgb), 0.1);
    border: 1px solid rgba(var(--rs-primary-rgb), 0.2);
    border-radius: 50px;
    color: var(--rs-primary);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.profile-name {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--rs-body-text-color);
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 15px;
}

.profile-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rs-primary);
    margin-bottom: 25px;
    opacity: 0.9;
}

.profile-description {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--rs-body-text-color);
    opacity: 0.7;
    margin-bottom: 35px;
    max-width: 600px;
}

.profile-description .text-highlight {
    color: var(--rs-body-text-color);
    font-weight: 700;
    opacity: 1;
    border-bottom: 2px solid var(--rs-primary);
}

.profile-status-note {
    display: flex;
    gap: 15px;
    background: rgba(var(--rs-primary-rgb), 0.03);
    border-left: 3px solid var(--rs-primary);
    padding: 20px 25px;
    border-radius: 4px 12px 12px 4px;
    max-width: 550px;
    align-items: flex-start;
}

.status-indicator {
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    margin-top: 6px;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
    animation: status-pulse 2s infinite;
}

@keyframes status-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.status-label {
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--rs-primary);
    display: block;
    margin-bottom: 4px;
}

.status-content {
    font-size: 0.938rem;
    line-height: 1.5;
    opacity: 0.8;
}

.btn-institutional-primary {
    background: var(--rs-primary);
    color: #fff !important;
    border: 1px solid var(--rs-primary);
    padding: 12px 28px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(var(--rs-primary-rgb), 0.2);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-institutional-primary:hover {
    background: #000;
    color: #fff !important;
    border-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

[theme="dark"] .btn-institutional-primary:hover {
    background: #fff;
    color: #000 !important;
    border-color: #fff;
}

.btn-institutional-outline {
    background: transparent;
    border: 1px solid rgba(var(--rs-primary-rgb), 0.3);
    color: var(--rs-body-text-color);
    padding: 12px 28px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-institutional-outline:hover {
    background: var(--rs-primary);
    color: #fff !important;
    border-color: var(--rs-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(var(--rs-primary-rgb), 0.15);
}

.profile-image-vault {
    position: relative;
    border-radius: 30px;
    padding: 20px;
    background: rgba(var(--rs-primary-rgb), 0.05);
    border: 1px solid rgba(var(--rs-primary-rgb), 0.1);
}

.profile-main-img {
    border-radius: 20px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.image-accent-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 10%;
    left: 10%;
    background: var(--rs-primary);
    filter: blur(80px);
    opacity: 0.15;
    z-index: 1;
}

.hero-bg-accent-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 991px) {
    .profile-name {
        font-size: 2.5rem;
    }

    .user-profile-hero {
        padding: 60px 0;
    }
}

[theme="dark"] .user-profile-hero {
    background-color: #050505;
}

[theme="dark"] .profile-image-vault {
    background: rgba(255, 255, 255, 0.02);
}

/* ************************
   Professional Vault Timeline
************************* */
.vault-timeline-container {
    padding-left: 10px;
}

.vault-timeline {
    position: relative;
    padding-left: 30px;
}

.vault-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--rs-primary) 0%, var(--rs-border-color) 100%);
    opacity: 0.2;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -35px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: var(--rs-card-bg);
    border: 2px solid var(--rs-primary);
    border-radius: 50%;
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    background: var(--rs-primary);
    box-shadow: 0 0 10px rgba(var(--rs-primary-rgb), 0.5);
    transform: scale(1.2);
}

.timeline-card {
    background: rgba(var(--rs-primary-rgb), 0.02);
    border: 1px solid var(--rs-border-color);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-item:hover .timeline-card {
    border-color: rgba(var(--rs-primary-rgb), 0.3);
    background: rgba(var(--rs-primary-rgb), 0.04);
    transform: translateX(10px);
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 15px;
}

.timeline-content-left {
    flex: 1;
}

.timeline-duration {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--rs-primary);
    background: rgba(var(--rs-primary-rgb), 0.1);
    padding: 4px 10px;
    border-radius: 4px;
    white-space: nowrap;
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--rs-body-text-color);
    margin: 0 0 4px 0;
}

.timeline-subtitle {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--rs-primary);
    opacity: 0.9;
    display: block;
}

.timeline-description {
    font-size: 0.938rem;
    line-height: 1.6;
    color: var(--rs-body-text-color);
    opacity: 0.7;
    margin: 0;
}

[theme="dark"] .timeline-card {
    background: rgba(255, 255, 255, 0.02);
}

.section-tagline-vault {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--rs-primary);
    margin-bottom: 12px;
    display: block;
}

.section-title-vault {
    font-size: 2.25rem;
    font-weight: 900;
    letter-spacing: -1.5px;
    margin-bottom: 25px;
    color: var(--rs-body-text-color);
}

/* ************************
   Minimal Bento Tech Matrix
************************* */
.skills-grid-wrapper {
    padding: 60px 0;
}

.skill-category-block {
    margin-bottom: 40px;
}

.skill-category-block:last-child {
    margin-bottom: 0;
}

.skill-bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

.skill-bento-card {
    position: relative;
    background: rgba(var(--rs-primary-rgb), 0.02);
    border: 1px solid var(--rs-border-color);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
    overflow: hidden;
}

.skill-bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(400px circle at var(--mouse-x) var(--mouse-y), rgba(var(--rs-primary-rgb), 0.04), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.skill-bento-card:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--rs-primary-rgb), 0.2);
    background: rgba(var(--rs-primary-rgb), 0.03);
}

.skill-bento-card:hover::before {
    opacity: 1;
}

.skill-bento-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.skill-bento-icon {
    width: 45px;
    height: 45px;
    padding: 6px;
    background: var(--rs-card-bg);
    border: 1px solid var(--rs-border-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.skill-bento-card:hover .skill-bento-icon {
    border-color: var(--rs-primary);
    transform: scale(1.1);
}

.skill-bento-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.skill-level-badge {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 8px;
    border-radius: 4px;
    background: rgba(var(--rs-primary-rgb), 0.08);
    color: var(--rs-primary);
    opacity: 0.8;
}

.skill-bento-body {
    position: relative;
    z-index: 2;
}

.skill-bento-name {
    font-size: 1rem;
    font-weight: 800;
    color: var(--rs-body-text-color);
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.skill-power-bar {
    height: 3px;
    width: 100%;
    background: var(--rs-border-color);
    border-radius: 2px;
    overflow: hidden;
}

.skill-power-fill {
    height: 100%;
    background: var(--rs-primary);
    border-radius: 2px;
}

[theme="dark"] .skill-bento-card {
    background: rgba(255, 255, 255, 0.015);
}

@media (max-width: 480px) {
    .skill-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ************************
   Vault Institutional About & Awards
************************* */
.about-vault-wrapper {
    position: relative;
    padding: 40px 0;
}

.about-image-vault {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(var(--rs-primary-rgb), 0.05);
    border: 1px solid var(--rs-border-color);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
}

.about-image-vault img {
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image-vault:hover img {
    transform: scale(1.05);
}

.award-vault-card {
    background: rgba(var(--rs-primary-rgb), 0.02);
    border: 1px solid var(--rs-border-color);
    border-radius: 16px;
    padding: 24px;
    margin-top: 24px;
    transition: all 0.4s ease;
}

.award-vault-card:hover {
    background: rgba(var(--rs-primary-rgb), 0.04);
    border-color: rgba(var(--rs-primary-rgb), 0.2);
    transform: translateX(10px);
}

.award-badge-vault {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: var(--rs-primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.award-title-vault {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--rs-body-text-color);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.award-desc-vault {
    font-size: 0.938rem;
    line-height: 1.6;
    color: var(--rs-body-text-color);
    opacity: 0.7;
    margin: 0;
}

.quote-vault-container {
    margin-top: 40px;
    position: relative;
    padding: 30px;
    background: rgba(var(--rs-primary-rgb), 0.03);
    border-left: 4px solid var(--rs-primary);
    border-radius: 0 20px 20px 0;
}

.quote-vault-text {
    font-family: var(--rs-body-font);
    font-style: italic;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--rs-body-text-color);
    opacity: 0.9;
    margin: 0;
}

.quote-vault-text::before {
    content: '"';
    font-size: 3rem;
    color: var(--rs-primary);
    position: absolute;
    top: -10px;
    left: 10px;
    opacity: 0.2;
    font-family: serif;
}

[theme="dark"] .about-image-vault {
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

[theme="dark"] .quote-vault-container {
    background: rgba(255, 255, 255, 0.02);
}

/* ************************
   Vault Command Center Tabs
************************* */
.vault-tabs-container {
    background: rgba(var(--rs-primary-rgb), 0.03);
    padding: 10px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    max-width: fit-content;
    margin: 0 auto;
    border: 1px solid var(--rs-border-color);
}

.vault-pill-nav {
    border: none !important;
    gap: 10px;
}

.vault-pill-nav .nav-link {
    background: transparent;
    color: var(--rs-body-text-color) !important;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.vault-pill-nav .nav-link:hover {
    background: rgba(var(--rs-primary-rgb), 0.05);
}

.vault-pill-nav .nav-link.active {
    background: var(--rs-primary) !important;
    color: #fff !important;
    box-shadow: 0 10px 20px rgba(var(--rs-primary-rgb), 0.15);
}

[theme="dark"] .vault-tabs-container {
    background: rgba(255, 255, 255, 0.02);
}

/* ************************
   Modern Project Cards
************************* */
.project-modern-card {
    background: var(--rs-card-bg);
    border: 1px solid var(--rs-border-color) !important;
    border-radius: 16px !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.project-modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--rs-primary) !important;
}

.project-hero-img {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-modern-card:hover .project-hero-img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.project-modern-card:hover .project-overlay {
    opacity: 1;
}

.project-modern-title {
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.project-modern-title a {
    color: var(--rs-body-text-color);
}

.project-modern-desc {
    font-size: 0.875rem;
    color: var(--rs-body-text-color);
    opacity: 0.7;
    line-height: 1.6;
}

.project-modern-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(var(--rs-primary-rgb), 0.05);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.813rem;
    font-weight: 600;
    opacity: 0.6;
}

.meta-item i {
    font-size: 1rem;
    color: var(--rs-primary);
}

.meta-category-badge {
    font-size: 0.688rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 2px 8px;
    background: rgba(var(--rs-primary-rgb), 0.08);
    color: var(--rs-primary);
    border-radius: 4px;
}

.btn-white {
    background: #fff;
    color: #000;
    border: none;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background: var(--rs-primary);
    color: #fff;
}

/* ************************
   Modern Blog Cards
************************* */
.blog-modern-card {
    background: var(--rs-card-bg);
    border: 1px solid var(--rs-border-color) !important;
    border-radius: 16px !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--rs-primary) !important;
}

.blog-hero-img {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-modern-card:hover .blog-hero-img {
    transform: scale(1.1);
}

.blog-category-label {
    background: rgba(var(--rs-primary-rgb), 0.9);
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    backdrop-filter: blur(4px);
}

.blog-meta-top {
    display: flex;
    align-items: center;
    font-size: 0.813rem;
    font-weight: 600;
    opacity: 0.6;
}

.blog-modern-title {
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.4;
}

.blog-modern-title a {
    color: var(--rs-body-text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-modern-card:hover .blog-modern-title a {
    color: var(--rs-primary);
}

.blog-modern-desc {
    font-size: 0.9rem;
    color: var(--rs-body-text-color);
    opacity: 0.7;
    line-height: 1.6;
}

.blog-modern-footer {
    display: flex;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(var(--rs-primary-rgb), 0.05);
}

.stat-group {
    display: flex;
    gap: 12px;
}

.stat-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.813rem;
    font-weight: 700;
    opacity: 0.6;
}

.stat-pill i {
    color: var(--rs-primary);
}

.read-more-indicator {
    width: 32px;
    height: 32px;
    background: rgba(var(--rs-primary-rgb), 0.05);
    color: var(--rs-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.blog-modern-card:hover .read-more-indicator {
    background: var(--rs-primary);
    color: #fff;
    transform: translateX(4px);
}

/* ************************
   Minimalist Journal Blog Style
************************* */
.blog-journal-item {
    transition: background 0.3s ease;
}

.blog-journal-item:hover {
    background: rgba(var(--rs-primary-rgb), 0.02);
}

.journal-img-wrapper {
    background: #f8f8f8;
    aspect-ratio: 16/9;
}

.journal-img-wrapper img {
    transition: transform 0.5s ease;
}

.blog-journal-item:hover .journal-img-wrapper img {
    transform: scale(1.05);
}

.journal-category {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--rs-primary);
}

.journal-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
}

.journal-date {
    font-size: 0.813rem;
    font-weight: 600;
    opacity: 0.5;
}

.journal-title {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.journal-title a {
    color: var(--rs-body-text-color);
}

.journal-excerpt {
    font-size: 1rem;
    color: var(--rs-body-text-color);
    opacity: 0.6;
    max-width: 800px;
}

.journal-read-link {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--rs-body-text-color);
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.3s ease;
}

.journal-read-link:hover {
    color: var(--rs-primary);
}

.journal-meta {
    font-size: 0.813rem;
    font-weight: 600;
    opacity: 0.4;
}

/* ************************
   Minimalist Column Blog
************************* */
.blog-column-card {
    transition: all 0.3s ease;
}

.column-img-wrapper {
    background: #f0f0f0;
}

.column-img-wrapper img {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-column-card:hover .column-img-wrapper img {
    transform: scale(1.08);
}

.column-category {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: #fff;
    color: #000;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.column-date {
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0.4;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.column-title {
    font-size: 1.125rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: var(--rs-body-text-color);
}

.column-title a {
    color: inherit;
    transition: color 0.3s ease;
}

.blog-column-card:hover .column-title a {
    color: var(--rs-primary);
}

.column-excerpt {
    font-size: 0.938rem;
    line-height: 1.6;
    opacity: 0.65;
    color: var(--rs-body-text-color);
}

.column-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 16px;
}

/* ************************
   Premium Column Project - Distinct from Journal
************************* */
.project-column-card {
    background: var(--rs-card-bg);
    border: 1px solid var(--rs-border-color);
    border-radius: 20px;
    padding: 12px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.project-column-card:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--rs-primary-rgb), 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.project-column-card .column-img-wrapper {
    aspect-ratio: 16 / 9;
    margin-bottom: 20px !important;
    overflow: hidden;
    position: relative;
    border-radius: 14px !important;
}

.project-column-card .column-img-wrapper img {
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-column-card:hover .column-img-wrapper img {
    transform: scale(1.1);
}

.project-column-card .column-category {
    position: absolute;
    top: 12px;
    right: 12px;
    bottom: auto;
    left: auto;
    background: rgba(var(--rs-primary-rgb), 0.9);
    color: #fff;
    padding: 5px 14px;
    border-radius: 8px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.project-column-card .column-content {
    padding: 0 4px 8px 4px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-column-card .column-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.3;
}

.project-column-card .column-excerpt {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.7;
    margin-bottom: 20px !important;
}

.project-column-card .column-footer {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(var(--rs-theme-color-rgb), 0.1);
}

.project-column-card .read-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--rs-primary) !important;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.project-column-card .read-indicator i {
    transition: transform 0.3s ease;
}

.project-column-card:hover .read-indicator i {
    transform: translateX(4px);
}

[theme="dark"] .project-column-card {
    background: #1a1a1a;
    border-color: rgba(255, 255, 255, 0.05);
}

[theme="dark"] .project-column-card .column-footer {
    border-top-color: rgba(255, 255, 255, 0.05);
}