body {
    background: #F4F7FC;
}

header.header.navbar.sticky-top.navbar-light {
    background: #ffffff;
    border-bottom: 1px solid #eff1ff;
}

/* ===== Premium Tailwind-Style Dropdown ===== */

.navbar .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.28s ease;

    min-width: 260px;
    padding: 0px;
    border: 1px solid rgba(226, 232, 240, 0.7);
    border-radius: 6px;

    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow:
        0 10px 25px rgba(15, 23, 42, 0.08),
        0 4px 10px rgba(15, 23, 42, 0.04);
    margin-top: 14px;
}

/* Show dropdown smoothly */
.nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ===== Dropdown Items ===== */

.navbar .dropdown-item {
    position: relative;
    display: flex;
    align-items: center;

    padding: 10px 15px;
    margin: 0px;

    border-radius: 0px;
    border-left: 3px solid transparent;

    font-weight: 500;
    letter-spacing: 0.2px;

    color: #334155;
    background: transparent;

    transition: all 0.25s ease;
}

/* Hover Effect */
.navbar .dropdown-item:hover {
    background: #dfe1f5;
    color: #0f172a;
    border-left: 3px solid #3b82f6;
}

/* Elegant active state */
.navbar .dropdown-item:active {
    transform: scale(0.98);
}

.navbar .dropdown-item:hover::before {
    transform: translateY(-50%) scaleY(1);
}

/* ===== Navbar Link ===== */

.navbar .nav-link.dropdown-toggle {
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Hover nav text */
.navbar .nav-link.dropdown-toggle:hover {
    color: #2563eb;
}

/* Smooth arrow animation */
.navbar .dropdown-toggle::after {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-toggle::after,
.nav-item.dropdown .dropdown-toggle.show::after {
    transform: rotate(180deg);
}

/* ===== Mobile ===== */

@media (max-width: 991px) {

    .navbar .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: none;

        background: #ffffff;
        border-radius: 14px;
        margin-top: 8px;
        box-shadow: none;
        border: 1px solid #e2e8f0;
    }

    .navbar .dropdown-item {
        padding: 12px 14px;
    }
}

.form-card {
    border: none;
    border-radius: 32px;
    background: #ffffff;
    box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.2), 0 2px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.2s ease;
    overflow: hidden;
}

.form-card h1 {
    font-size: 24px;
    padding-bottom: 10px;
}

.card-header-custom {
    background: linear-gradient(105deg, #0B2B40 0%, #124A5E 100%);
    padding: 1.8rem 2rem;
    border-bottom: none;
}

div#successMessageBox {
    background: linear-gradient(135deg, #f5fff6, #fff);
    border: 1px solid #cafecd;
    border-left: 6px solid #35dc26;
    border-radius: 18px;
    padding: 22px 24px;
    margin-bottom: 28px;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.08);
    animation: errorFade .35s ease;
}

/* ERROR MESSAGE BOX */
#errorMessageBox {
    background: linear-gradient(135deg, #fff5f5, #fff);
    border: 1px solid #fecaca;
    border-left: 6px solid #dc2626;
    border-radius: 18px;
    padding: 22px 24px;
    margin-bottom: 28px;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.08);
    animation: errorFade .35s ease;
}

/* LIST */
#errorMessageBox ul {
    padding: 0;
    list-style: none;
}

/* LIST ITEM */
#errorMessageBox ul li {
    position: relative;
    padding: 5px 15px 5px 45px;
    margin-bottom: 12px;
    background: #fff;
    border: 1px solid #fee2e2;
    border-radius: 14px;
    color: #7f1d1d;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.7;
    transition: .3s ease;
}

/* ICON */
#errorMessageBox ul li::before {
    content: "!";
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%) scale(0.75);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #dc2626;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    font-weight: 600;
    line-height: 1;
}

/* HOVER EFFECT */
#errorMessageBox ul li:hover {
    transform: translateX(4px);
    background: #fef2f2;
}

/* LAST ITEM */
#errorMessageBox ul li:last-child {
    margin-bottom: 0;
}

/* ANIMATION */
@keyframes errorFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MOBILE */
@media(max-width:576px) {

    #errorMessageBox {
        padding: 18px;
        border-radius: 14px;
    }

    #errorMessageBox .error-header {
        font-size: 17px;
    }

    #errorMessageBox ul li {
        font-size: 14px;
        padding: 12px 14px 12px 42px;
    }

}

/* ===============================================
       Box styling for form sections (card-like design)
       =============================================== 
*/

.section-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.02);
    padding: 1.5rem 1.75rem;
    margin-bottom: 2rem;
    transition: box-shadow 0.25s ease, transform 0.2s ease;
    border: 1px solid rgba(42, 157, 143, 0.12);
}

.section-card:hover {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.06), 0 4px 8px rgba(0, 0, 0, 0.02);
}

/* Adjust the section title inside the card for better spacing */
.section-card .section-title {
    margin-top: 0;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 5px solid #2A9D8F;
}

/* Slight padding adjustment for nested rows on small screens */
@media (max-width: 768px) {
    .section-card {
        padding: 1.25rem;
    }
}

/* Optional: Enhance the form elements inside the card for consistent spacing */
.section-card .form-control,
.section-card .form-select,
.section-card textarea {
    background-color: #fefefe;
}

/* Keep the existing spacing for radio/checkbox groups clean */
.section-card .custom-check-grid,
.section-card .radio-inline-group {
    margin-top: 0.25rem;
}

.section-title {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.3px;
    color: #1A3E4C;
    border-left: 5px solid #2A9D8F;
    padding-left: 1rem;
    margin-bottom: 1.5rem;
}

.section-icon {
    color: #2A9D8F;
    margin-right: 0.5rem;
}

.form-label {
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    color: #2c5a6e;
    margin-bottom: 0.4rem;
}

.form-control,
.form-select,
textarea {
    border: 1.5px solid #e2e8f0;
    border-radius: 3px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    transition: all 0.2s;
    background-color: #fefefe;
}

.form-control:focus,
.form-select:focus,
textarea:focus {
    border-color: #2A9D8F;
    box-shadow: 0 0 0 2px rgba(42, 157, 143, 0.15);
    outline: none;
}

.form-check-input:checked {
    background-color: #2A9D8F;
    border-color: #2A9D8F;
}

.form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.25);
    border-color: #2A9D8F;
}

.btn-premium {
    background: linear-gradient(95deg, #1E6F5C, #2A9D8F);
    border: none;
    padding: 0.9rem 2rem;
    font-weight: 700;
    border-radius: 40px;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.2s;
    box-shadow: 0 8px 18px rgba(42, 157, 143, 0.3);
}

.btn-premium:hover {
    background: linear-gradient(95deg, #155f4e, #238b7e);
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(42, 157, 143, 0.4);
}

.badge-category {
    background: #EFF7F6;
    color: #1E6F5C;
    padding: 0.5rem 1rem;
    border-radius: 40px;
    font-weight: 500;
    font-size: 0.8rem;
}

.card-padding {
    padding: 2rem 2rem 1rem 2rem;
}

@media (max-width: 768px) {
    .card-padding {
        padding: 1.5rem;
    }

    .section-title {
        font-size: 1.25rem;
    }
}

.custom-check-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 0.75rem;
}

.radio-inline-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.legal-other-input {
    margin-top: 0.5rem;
    margin-left: 1.2rem;
}

.business-other-input {
    margin-top: 0.5rem;
}

.text-premium-dark {
    color: #1A3E4C;
}

.bg-white-soft {
    background-color: #ffffff;
}

.hover-lift {
    transition: transform 0.1s ease;
}

.fs-small {
    font-size: 0.95rem;
}


/* PREMIUM LOADER */
.premium-loader-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 15, 32, 0.72);
    backdrop-filter: blur(10px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn .3s ease;
}

.premium-loader-box {
    width: 420px;
    max-width: 92%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 45px 35px;
    text-align: center;
    color: #fff;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.premium-spinner-wrap {
    width: 120px;
    height: 120px;
    margin: auto;
    position: relative;
}

.premium-spinner-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, 0.08);
    border-top: 5px solid #c9a227;
    animation: spin 1s linear infinite;
}

.premium-spinner-core {
    width: 78px;
    height: 78px;
    background: linear-gradient(135deg, #d4af37, #f5d76e);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #111;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.45);
}

.premium-loader-box h3 {
    margin-top: 28px;
    font-size: 28px;
    font-weight: 700;
}

.premium-loader-box p {
    margin-top: 10px;
    color: #d6d6d6;
    line-height: 1.7;
}

.premium-progress {
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    overflow: hidden;
    margin-top: 28px;
}

.premium-progress-bar {
    height: 100%;
    width: 40%;
    background: linear-gradient(90deg, #d4af37, #f5d76e);
    border-radius: 50px;
    animation: loadingBar 1.5s infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes loadingBar {
    0% {
        margin-left: -40%;
    }

    100% {
        margin-left: 100%;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.d-none {
    display: none !important;
}


.corporate-loader {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.82);
    backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.corporate-box {
    width: 540px;
    max-width: 92%;
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.corporate-header {
    display: flex;
    align-items: center;
    gap: 18px;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 20px;
}

.corporate-icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: linear-gradient(135deg, #0f172a, #2563eb);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.corporate-header h4 {
    margin: 0;
    font-weight: 800;
}

.corporate-header span {
    color: #6b7280;
}

.corporate-process {
    margin-top: 28px;
}

.step {
    background: #f8fafc;
    border-radius: 14px;
    padding: 16px 18px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.step.active {
    color: #16a34a;
}

.step.loading {
    color: #2563eb;
}

.mini-spinner {
    width: 20px;
    height: 20px;
    border: 3px solid #dbeafe;
    border-top: 3px solid #2563eb;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.corporate-progress-wrap {
    margin-top: 28px;
    background: #e5e7eb;
    height: 10px;
    border-radius: 50px;
    overflow: hidden;
}

.corporate-progress-bar {
    width: 75%;
    height: 100%;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    animation: corporateProgress 2s infinite;
}

.corporate-note {
    margin-top: 16px;
    color: #6b7280;
    text-align: center;
}

@keyframes corporateProgress {
    0% {
        width: 10%;
    }

    100% {
        width: 100%;
    }
}

small {
    font-size: 10px;
}

a {
    text-decoration: none;
}

.member-dashboard {
    min-height: 100vh;
    padding: 20px;
}

.dashboard-sidebar {
    width: 280px;
    padding: 0px;
}

/* Premium box styling */
.feature-box {
    background: #ffffff;
    border-radius: 6px;
    transition: all 0.25s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02), 0 2px 6px rgba(0, 0, 0, 0.03);
    height: 100%;
    border-top: 3px solid #6b6de7;
    overflow: hidden;
    min-height: 80vh;
}

.feature-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.12);
    border-color: #8688f7;
}

.box-header {
    padding: 10px 10px;
    border-bottom: 2px solid #f0f4fa;
}

.box-header h5 {
    font-weight: 600;
    font-size: 14px;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3px 5px;
}

.box-header h4 i {
    color: #2c7da0;
    font-size: 1.6rem;
}

.list-group-custom {
    background: transparent;
    border-radius: 0;
    padding: 0.5rem 0;
}

.list-group-custom .list-group-item {
    background: transparent;
    border: none;
    padding: 0.85rem 10px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.2s;
    border-left: 3px solid transparent;
    margin: 2px 0;
}

.list-group-custom .list-group-item:hover,
.active .list-group-item {
    background: #f8fafd;
    border-left-color: #2c7da0;
    transform: translateY(1px);
}

.list-group-custom .list-group-item i {
    width: 28px;
    color: #5e9ebc;
    margin-right: 5px;
    font-size: 1.1rem;
}

.badge-count {
    background: #eef2ff;
    color: #1e5a78;
    border-radius: 40px;
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 10px;
}

.box-footer {
    padding: 0.9rem 1.5rem 1.2rem;
    border-top: 1px solid #f0f4f8;
    background: #fefefe;
}

.btn-outline-premium {
    border-radius: 60px;
    border: 1px solid #cbdde9;
    color: #2c7da0;
    font-weight: 500;
    padding: 5px 16px;
    font-size: 0.8rem;
    transition: 0.2s;
}

.btn-outline-premium:hover {
    background: #f8fafd;
    color: #323772;
    border-color: rgb(22, 67, 87);
}

@media (max-width: 768px) {
    body {
        padding: 1.5rem 0.75rem;
    }

    .box-header h4 {
        font-size: 1.2rem;
    }
}

.dashboard-content {
    min-height: 500px;
    background: #ffffff;
    padding: 0px;
    border-radius: 6px;
    transition: all 0.25s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02), 0 2px 6px rgba(0, 0, 0, 0.03);
    height: 100%;
    border-top: 3px solid #6b6de7;
    overflow: hidden;
}

.mobile-menu {
    display: none;
    margin-bottom: 15px;
}

@media(max-width:991px) {

    .dashboard-sidebar {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .dashboard-content {
        width: 100%;
    }

}

/*************
Widget Box
************/

.widget-box {
    position: relative;
    background: #fff;
    border-radius: 18px;
    padding: 22px 20px;

    border: 1px solid #f3f4f6;

    box-shadow:
        rgba(17, 17, 26, 0.04) 0px 4px 16px,
        rgba(17, 17, 26, 0.02) 0px 8px 32px;

    transition: all .3s ease;
}

.widget-box:hover {
    transform: translateY(-4px);

    box-shadow:
        rgba(17, 17, 26, 0.08) 0px 10px 24px,
        rgba(17, 17, 26, 0.05) 0px 20px 48px;
}

.widget-icon {
    width: 48px;
    height: 48px;

    border-radius: 14px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    line-height: 1;

    margin-bottom: 18px;
}

/* Fix Font Awesome Alignment */

.widget-icon i {
    display: flex;
    align-items: center;
    justify-content: center;

    line-height: 1;
}

/* Different Icon Colors */

.fee-icon {
    background: rgba(13, 110, 253, .12);
    color: #0d6efd;
}

.discount-icon {
    background: rgba(255, 193, 7, .15);
    color: #e0a800;
}

.payable-icon {
    background: rgba(25, 135, 84, .12);
    color: #198754;
}

.widget-label {
    display: block;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: .8px;
    text-transform: uppercase;

    color: #9ca3af;

    margin-bottom: 8px;
}

.widget-amount {
    font-size: 24px;
    font-weight: 700;

    color: #111827;

    margin: 0;
}

.dashboard-box-header {
    background: #636b73;
}

/***********
Membership Directory
******/
.member-premium-card {
    height: 100%;
    background: #ffffff;
    border-radius: 24px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    border: 1px solid #edf2f7;
    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.05),
        0 2px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.35s ease;
}

.member-premium-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0d6efd, #20c997);
}

.member-premium-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.10),
        0 8px 20px rgba(0, 0, 0, 0.05);
}

.member-top {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-bottom: 18px;
}

.member-logo-wrap {
    width: 82px;
    height: 82px;
    min-width: 82px;
    border-radius: 20px;
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-title {
    flex: 1;
}

.member-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 50px;
    background: linear-gradient(90deg, #eff6ff, #ecfeff);
    color: #0d6efd;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 10px;
}

.member-title h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    line-height: 1.4;
}

.member-location {
    margin-top: 8px;
    color: #6b7280;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.member-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.member-categories span {
    padding: 8px 14px;
    border-radius: 50px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    font-size: 12px;
    color: #374151;
    font-weight: 600;
}

.member-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 22px;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.member-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
}

.member-meta .meta-item {
    padding: 10px 14px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    border: 1px solid #edf2f7;
    font-size: 12px;
    font-weight: 600;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 8px;
}

.member-meta .meta-item i {
    color: #0d6efd;
}

.member-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px dashed #dbe3ec;
}

.member-contact a {
    text-decoration: none;
    color: #4b5563;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.member-contact a:hover {
    color: #0d6efd;
}

.member-contact a i {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #f3f8ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d6efd;
    font-size: 13px;
}

.member-footer {
    margin-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #f3f8ff;
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.social-btn:hover {
    background: linear-gradient(135deg, #0d6efd, #20c997);
    color: #fff;
}

.view-profile-btn {
    padding: 12px 20px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0d6efd, #20c997);
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.18);
}

.view-profile-btn:hover {
    transform: translateY(-2px);
    color: #fff;
}

@media(max-width:576px) {

    .member-premium-card {
        padding: 20px;
    }

    .member-top {
        align-items: flex-start;
    }

    .member-logo-wrap {
        width: 68px;
        height: 68px;
        min-width: 68px;
    }

    .member-title h4 {
        font-size: 17px;
    }
}

/* Option Styling */
option {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    background: #ffffff;
    padding: 12px;
}

/* Label Style */
label.form-label {
    color: #374151;
    letter-spacing: .2px;
    margin-bottom: 10px;
}

label.form-label i {
    color: #0d6efd;
}

.input-note {
    font-size: 11px;
    font-weight: 500;
    color: #5e5c66;
}


/* footer /  */

.footer-premium {
    background: #0a1c27;
    color: #adb7c4;
    border-top: 1px solid rgba(196, 154, 43, 0.15);
}

.footer-logo {
    max-width: 150px;
}

.footer-premium .contact-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.footer-premium .contact-info .info-card {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.footer-premium .contact-info .info-card:hover {
    transform: translateY(-3px);
}

.footer-premium .contact-info .info-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d6efd, #20c997);
    color: #fff;
    font-size: 16px;
    box-shadow: 0 8px 18px rgba(13, 110, 253, 0.25);
}

.footer-premium .contact-info .info-content {
    flex: 1;
}

.footer-premium .contact-info .label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 6px;
}

.footer-premium .contact-info .info-content p {
    margin: 0;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.8;
    font-weight: 500;
}

.footer-premium .contact-info .info-content p small {
    display: block;
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
    font-weight: 400;
}

.footer-premium .contact-info .social-links {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

.footer-premium .contact-info .social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.10);
    transition: all 0.3s ease;
    font-size: 15px;
}

.footer-premium .contact-info .social-links a:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, #0d6efd, #20c997);
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.25);
}

/* Pagination Wrapper */
.pagination {
    gap: 6px;
    align-items: center;
}

/* Page Item Link */
.pagination .page-item .page-link {
    border: none;
    border-radius: 50%;
    padding: 8px 15px;
    color: #4f46e5;
    font-weight: 500;
    background: #dfe5fd;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    margin: 2px;
}

.pagination .page-item .page-link:hover {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 117, 252, 0.25);
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    border: none;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(37, 117, 252, 0.35);
}

.pagination .page-item .page-link:active {
    transform: scale(0.96);
}