

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Nunito:wght@300;400;500;600;700;800&display=swap");


:root {
    --color-primary: #e91e63;
    --color-primary-dark: #c2185b;
    --color-primary-light: #fce4ec;
    --color-navy: #1a2557;
    --color-navy-dark: #0d1333;
    --color-navy-light: #2d3a6b;
    --color-bg: #f8f9ff;
    --color-white: #ffffff;
    --color-border: #e2e4f0;
    --color-muted: #8892b0;
    --color-text: #2d3a6b;
    --color-text-soft: #5a6a99;
    --radius-sm: 0.5rem;
    --radius-md: 0.875rem;
    --radius-lg: 1.25rem;
    --radius-xl: 1.75rem;
    --radius-full: 9999px;
    --shadow-soft: 0 2px 20px rgba(26, 37, 87, 0.07);
    --shadow-card: 0 4px 24px rgba(26, 37, 87, 0.1);
    --shadow-btn: 0 4px 14px rgba(233, 30, 99, 0.3);
    --shadow-nav: 0 2px 16px rgba(26, 37, 87, 0.08);
    --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Nunito", ui-sans-serif, system-ui;
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playfair Display", Georgia, serif;
    color: var(--color-navy);
    font-weight: 700;
    line-height: 1.25;
}

.navbar {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-nav);
    position: sticky;
    top: 0;
    z-index: 50;
}
.nav-link {
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--color-text);
    padding: 0.375rem 0;
    position: relative;
    transition: color var(--transition);
    text-decoration: none;
}
.nav-link::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: width var(--transition);
}
.nav-link:hover {
    color: var(--color-primary);
}
.nav-link:hover::after {
    width: 100%;
}
.nav-link.active {
    color: var(--color-primary);
}
.nav-link.active::after {
    width: 100%;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-primary);
    color: var(--color-white);
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    font-size: 0.9375rem;
    padding: 0.625rem 1.625rem;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-btn);
    transition:
        background var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
    text-decoration: none;
}
.btn-primary:hover {
    background: var(--color-primary-dark);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
    transform: translateY(-1px);
    color: var(--color-white);
}
.btn-navy {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-navy);
    color: var(--color-white);
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    font-size: 0.9375rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition:
        background var(--transition),
        transform var(--transition);
    text-decoration: none;
    width: 100%;
    justify-content: center;
}
.btn-navy:hover {
    background: var(--color-navy-dark);
    transform: translateY(-1px);
    color: var(--color-white);
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--color-navy);
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    font-size: 0.9375rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-border);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    width: 100%;
}
.btn-outline:hover {
    border-color: var(--color-navy);
    background: var(--color-navy);
    color: var(--color-white);
}
.cart-btn {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: var(--color-navy);
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
}
.cart-btn:hover {
    background: var(--color-navy-dark);
    color: white;
}

.form-group {
    margin-bottom: 1.25rem;
}
.form-label {
    display: block;
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}
.form-input {
    width: 100%;
    padding: 0.8125rem 1rem;
    padding-right: 2.75rem;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: "Nunito", sans-serif;
    font-size: 0.9375rem;
    color: var(--color-text);
    background: var(--color-white);
    outline: none;
    transition:
        border-color var(--transition),
        box-shadow var(--transition);
    box-shadow: 0 2px 8px rgba(26, 37, 87, 0.06);
}
.form-input::placeholder {
    color: var(--color-muted);
}
.form-input:focus {
    border-color: var(--color-navy);
    box-shadow: 0 0 0 3px rgba(26, 37, 87, 0.08);
}
.form-input.error {
    border-color: var(--color-primary);
}
.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.input-wrapper .form-input {
    padding-right: 2.75rem;
}
.input-icon {
    position: absolute;
    right: 1rem;
    color: var(--color-muted);
    pointer-events: none;
    display: flex;
    align-items: center;
}
.form-select {
    width: 100%;
    padding: 0.8125rem 2.5rem 0.8125rem 1rem;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: "Nunito", sans-serif;
    font-size: 0.9375rem;
    color: var(--color-text);
    background: var(--color-white);
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238892b0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    cursor: pointer;
    transition:
        border-color var(--transition),
        box-shadow var(--transition);
    box-shadow: 0 2px 8px rgba(26, 37, 87, 0.06);
}
.form-select:focus {
    border-color: var(--color-navy);
    box-shadow: 0 0 0 3px rgba(26, 37, 87, 0.08);
}

.tab-bar {
    display: flex;
    border-bottom: 1.5px solid var(--color-border);
    margin-bottom: 1.75rem;
}
.tab-btn {
    flex: 1;
    padding: 0.875rem 0;
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--color-muted);
    background: none;
    border: none;
    border-bottom: 2.5px solid transparent;
    margin-bottom: -1.5px;
    cursor: pointer;
    transition:
        color var(--transition),
        border-color var(--transition);
}
.tab-btn.active {
    color: var(--color-navy);
    border-bottom-color: var(--color-navy);
}

.toggle-btn-group {
    display: flex;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 1.5rem;
}
.toggle-btn {
    flex: 1;
    padding: 0.875rem 1rem;
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    font-size: 0.9375rem;
    border: 2px solid var(--color-border);
    cursor: pointer;
    transition: all var(--transition);
    background: var(--color-white);
    color: var(--color-navy);
}
.toggle-btn:first-child {
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    border-right: none;
}
.toggle-btn:last-child {
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.toggle-btn.active {
    background: var(--color-navy);
    color: var(--color-white);
    border-color: var(--color-navy);
}

.step-progress {
    display: flex;
    gap: 0;
    margin-bottom: 2rem;
}
.step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.step-bar {
    height: 3px;
    border-radius: 2px;
    background: var(--color-border);
    transition: background var(--transition);
}
.step-bar.done {
    background: var(--color-navy);
}
.step-bar.active {
    background: var(--color-primary);
}
.step-label {
    font-family: "Nunito", sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-muted);
}
.step-label.done,
.step-label.active {
    color: var(--color-navy);
}

.auth-card {
    width: 100%;
    max-width: 42rem;
    margin: 0 auto;
    padding: 3rem 2.5rem;
}
.auth-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-navy);
    text-align: center;
    margin-bottom: 0.25rem;
}

.footer {
    background: var(--color-navy);
    color: rgba(255, 255, 255, 0.75);
}
.footer-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    text-decoration: none;
    transition: color var(--transition);
    display: block;
    padding: 0.25rem 0;
}
.footer-link:hover {
    color: var(--color-white);
}
.footer-heading {
    font-family: "Nunito", sans-serif;
    font-weight: 800;
    font-size: 1.0625rem;
    color: var(--color-white);
    margin-bottom: 1.25rem;
}
.footer-social-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: background var(--transition);
    text-decoration: none;
}
.footer-social-btn:hover {
    background: rgba(255, 255, 255, 0.22);
}

.alert {
    padding: 0.875rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
.alert-danger {
    background: #fce4ec;
    color: #c2185b;
    border: 1px solid #f8bbd0;
}
.alert-success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}
.alert-info {
    background: #e3f2fd;
    color: #1565c0;
    border: 1px solid #bbdefb;
}
.field-error {
    color: var(--color-primary);
    font-size: 0.8125rem;
    margin-top: 0.375rem;
    font-weight: 600;
}

.admin-sidebar {
    width: 16rem;
    min-height: 100vh;
    background: var(--color-navy);
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 40;
    transition: transform var(--transition);
    overflow-y: auto;
}
.admin-sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all var(--transition);
    border-left: 3px solid transparent;
}
.admin-sidebar-link:hover {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.07);
    border-left-color: var(--color-primary);
}
.admin-sidebar-link.active {
    color: var(--color-white);
    background: rgba(233, 30, 99, 0.15);
    border-left-color: var(--color-primary);
}
.admin-content {
    margin-left: 16rem;
    min-height: 100vh;
    background: var(--color-bg);
flex: 1;
}
.admin-topbar {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    padding: 0 1.75rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 0;
    z-index: 30;
}

.stat-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border);
}
.data-table {
    width: 100%;
    border-collapse: collapse;
}
.data-table th {
    background: var(--color-bg);
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-muted);
    padding: 0.875rem 1rem;
    text-align: left;
    border-bottom: 2px solid var(--color-border);
}
.data-table td {
    padding: 0.875rem 1rem;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.9375rem;
    color: var(--color-text);
}
.data-table tr:hover td {
    background: rgba(248, 249, 255, 0.8);
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.65rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
}
.badge-success {
    background: #e8f5e9;
    color: #2e7d32;
}
.badge-danger {
    background: #fce4ec;
    color: #c2185b;
}
.badge-info {
    background: #e3f2fd;
    color: #1565c0;
}
.badge-warning {
    background: #fff8e1;
    color: #f57f17;
}

.custom-checkbox {
    width: 1.125rem;
    height: 1.125rem;
    accent-color: var(--color-navy);
    cursor: pointer;
}

.divider-rings {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.divider-rings::before,
.divider-rings::after {
    content: "";
    flex: 1;
    max-width: 5rem;
    height: 1.5px;
    background: var(--color-border);
}
.divider-rings img{
    user-select: none;
    -webkit-user-drag: none;
}
.link-red {
    color: var(--color-primary);
    font-weight: 700;
    text-decoration: none;
    transition: opacity var(--transition);
}
.link-red:hover {
    opacity: 0.8;
}
.link-navy {
    color: var(--color-navy);
    font-weight: 700;
    text-decoration: underline;
    transition: opacity var(--transition);
}
.link-navy:hover {
    opacity: 0.7;
}
.fade-in {
    animation: fadeIn 0.35s ease both;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .admin-sidebar {
        transform: translateX(-100%);
    }
    .admin-sidebar.open {
        transform: translateX(0);
    }
    .admin-content {
        margin-left: 0;
    }
    .auth-card {
        padding: 2rem 1.25rem;
    }
}

.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #1a1a1a;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 4rem 1.5rem 3rem;
    width: 100%;
}
.hero-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}
.hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.0625rem;
    margin-bottom: 2.5rem;
}

.search-bar {
    background: white;
    border-radius: 9999px;
    padding: 0.4rem 0.4rem 0.4rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 820px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}
.search-field {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    flex: 1;
    border-right: 1px solid #e2e4f0;
    padding: 0 0.75rem 0 0.25rem;
}
.search-field-mid {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    flex: 1;
    border-right: 1px solid #e2e4f0;
    padding: 0 0.75rem;
}
.search-field-last {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    flex: 1;
    padding: 0 0.75rem;
}
.search-icon {
    width: 1rem;
    height: 1rem;
    color: #e91e63;
    flex-shrink: 0;
}
.search-select {
    border: none;
    outline: none;
    font-family: "Nunito", sans-serif;
    font-size: 0.875rem;
    color: #2d3a6b;
    background: transparent;
    width: 100%;
    cursor: pointer;
    padding: 0.5rem 0;
}
.search-btn {
    background: #e91e63;
    color: white;
    border: none;
    border-radius: 9999px;
    padding: 0.75rem 2rem;
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    font-size: 0.9375rem;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
}

.section-white {
    padding: 5rem 1.5rem;
    background: white;
}
.section-light {
    padding: 5rem 1.5rem;
    background: #f8f9ff;
}
.section-navy {
    padding: 4rem 1.5rem;
    background: #1a2557;
}
.container-xl {
    max-width: 1200px;
    margin: 0 auto;
}
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a2557;
    margin-bottom: 0;
}
.section-title-xl {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a2557;
    line-height: 1.25;
    margin-bottom: 1.25rem;
}
.section-title-white {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0;
}
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.875rem;
}
.section-divider-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0.875rem 0 1.5rem;
}
.divider-line {
    height: 1.5px;
    width: 4rem;
    background: #e2e4f0;
}
.rings-img {
    height: 1.75rem;
}
.section-text {
    color: #8892b0;
    font-size: 0.9375rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}
.section-text-sm {
    color: #8892b0;
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 0.75rem;
}
.accent-red {
    color: #e91e63;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}
.grid-4-gap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.grid-2-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.grid-2-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.grid-flex-center {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.match-img-wrap {
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 1.25rem;
    height: 220px;
    background: linear-gradient(135deg, #fce4ec, #e8eaf6);
}
.cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.match-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a2557;
    margin-bottom: 0.5rem;
}
.match-desc {
    color: #8892b0;
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 0.75rem;
}
.learn-more {
    color: #e91e63;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.icon-xs {
    width: 0.625rem;
    height: 0.625rem;
}
.icon-sm {
    width: 0.875rem;
    height: 0.875rem;
}
.icon-md {
    width: 1rem;
    height: 1rem;
}
.icon-lg {
    width: 1.25rem;
    height: 1.25rem;
}

.profile-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #e2e4f0;
    box-shadow: 0 2px 12px rgba(26, 37, 87, 0.07);
}
.profile-img-wrap {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #fce4ec, #e8eaf6);
}
.profile-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: #e91e63;
    color: white;
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 9999px;
}
.profile-like-btn {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: white;
    border: none;
    border-radius: 50%;
    width: 1.75rem;
    height: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}
.profile-body {
    padding: 0.875rem;
}
.profile-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a2557;
    margin: 0 0 0.5rem;
}
.profile-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.25rem 0.5rem;
    margin-bottom: 0.75rem;
}
.profile-meta-item {
    font-size: 0.7rem;
    color: #8892b0;
}
.profile-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-profile-view {
    flex: 1;
    background: #1a2557;
    color: white;
    border-radius: 0.5rem;
    padding: 0.5rem 0;
    font-family: "Nunito", sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    display: block;
}
.btn-share {
    background: none;
    border: 1px solid #e2e4f0;
    border-radius: 0.5rem;
    padding: 0.45rem 0.6rem;
    cursor: pointer;
}
.icon-muted {
    color: #8892b0;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1.5px solid #1a2557;
    color: #1a2557;
    background: white;
    border-radius: 9999px;
    padding: 0.625rem 2.5rem;
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    font-size: 0.9375rem;
    text-decoration: none;
}
.text-center-mt {
    text-align: center;
    margin-top: 2rem;
}

.trust-card {
    background: white;
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid #e2e4f0;
    box-shadow: 0 2px 16px rgba(26, 37, 87, 0.07);
}
.trust-img-wrap {
    height: 140px;
    background: linear-gradient(135deg, #fce4ec, #e8eaf6);
}
.trust-body {
    padding: 1.25rem;
}
.trust-icon-wrap {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: #fce4ec;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}
.trust-title {
    font-family: "Nunito", sans-serif;
    font-size: 0.9375rem;
    font-weight: 800;
    color: #1a2557;
    margin-bottom: 0.375rem;
}
.trust-desc {
    color: #8892b0;
    font-size: 0.8125rem;
    line-height: 1.6;
}

.stories-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.story-hero-img {
    border-radius: 1rem;
    overflow: hidden;
    height: 160px;
    background: linear-gradient(135deg, #fce4ec, #e8eaf6);
}
.story-card {
    background: #f8f9ff;
    border-radius: 1rem;
    padding: 1.25rem;
    border: 1px solid #e2e4f0;
}
.story-date {
    font-size: 0.75rem;
    color: #e91e63;
    font-weight: 700;
    margin-bottom: 0.375rem;
}
.story-text {
    font-size: 0.875rem;
    color: #2d3a6b;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}
.story-author {
    font-size: 0.8rem;
    font-weight: 700;
    color: #1a2557;
}

.rounded-img-lg {
    border-radius: 1.5rem;
    overflow: hidden;
    height: 380px;
    background: linear-gradient(135deg, #fce4ec, #e8eaf6);
}

.cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.btn-primary-lg {
    font-size: 1rem;
    padding: 0.875rem 2.25rem;
    white-space: nowrap;
}
.btn-stories {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #1a2557;
    color: white;
    border-radius: 9999px;
    padding: 0.75rem 1.75rem;
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    font-size: 0.9375rem;
    text-decoration: none;
}

.admin-body-wrap {
    display: flex;
}
.admin-sidebar-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.admin-logo {
    height: 2.5rem;
    width: auto;
}
.admin-logo-text {
    display: none;
    color: white;
    font-weight: 800;
    font-size: 1.25rem;
}
.admin-nav {
    flex: 1;
    padding: 1rem 0;
    overflow-y: auto;
}
.admin-nav-label {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.5rem 1.5rem 0.25rem;
}
.admin-nav-label-spaced {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1.25rem 1.5rem 0.25rem;
}
.admin-sidebar-footer {
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.admin-nav-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}
.admin-topbar-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.admin-toggle-btn {
    display: none;
    padding: 0.5rem;
    border-radius: 0.5rem;
    border: none;
    background: none;
    cursor: pointer;
}
.admin-toggle-icon {
    width: 1.5rem;
    height: 1.5rem;
}
.admin-topbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.admin-user-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.admin-avatar {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: #1a2557;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
}
.admin-username {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1a2557;
    margin: 0;
}
.admin-role {
    font-size: 0.75rem;
    color: #8892b0;
    margin: 0;
}
.admin-main {
    padding: 2rem;
    animation: fadeIn 0.35s ease both;
}
.alert-mb {
    margin-bottom: 1.25rem;
}
.admin-logout-btn {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
}
.admin-page-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a2557;
    margin: 0;
}

.step-page-wrap {
    max-width: 60rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.auth-card-wide {
    max-width: 44rem;
}
.auth-title-sm {
    font-size: 1.75rem;
}
.step-progress-wrap {
    max-width: 44rem;
    margin: 0 auto;
}
.step-note {
    max-width: 44rem;
    margin: 0 auto 1.5rem;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--color-navy);
}

.form-container {
    max-width: 48rem;
}
.form-container-md {
    max-width: 52rem;
}

.btn-fit {
    width: auto;
    padding: 0.8125rem 1.5rem;
}
.btn-fit-wide {
    width: auto;
    padding: 0.8125rem 2rem;
}
.btn-sm-fit {
    width: auto;
    padding: 0.625rem 1.25rem;
}
.btn-logout {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
}
