/* Tailwind CSS - Compiled Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Cormorant+Garamond:wght@400;500;600;700&family=Great+Vibes&display=swap');

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #374151;
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
}

:root {
    --navbar-offset: 96px;
}

body {
    padding-top: var(--navbar-offset);
}

/* Colors */
:root {
    --primary: #ff2d55;
    --secondary: #ff6b6b;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

/* Utility Classes */
.bg-gray-50 { background-color: var(--gray-50); }
.bg-white { background-color: white; }
.bg-gray-800 { background-color: var(--gray-800); }
.bg-gray-50 { background-color: var(--gray-50); }
.bg-primary { background-color: var(--primary); }
.bg-secondary { background-color: var(--secondary); }

.text-white { color: white; }
.text-gray-900 { color: var(--gray-900); }
.text-gray-800 { color: var(--gray-800); }
.text-gray-700 { color: var(--gray-700); }
.text-gray-600 { color: var(--gray-600); }
.text-gray-500 { color: var(--gray-500); }
.text-gray-400 { color: var(--gray-400); }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }

/* Layout */
.container {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Navbar container override */
.navbar-container {
    max-width: none;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

/* Privacy Policy Page */



.policy-hero-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 999px;
    right: -120px;
    top: -120px;
    background: radial-gradient(circle, rgba(255, 45, 85, 0.22), rgba(255, 45, 85, 0));
    pointer-events: none;
}

.policy-kicker {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #b91c1c;
    font-weight: 700;
    margin-bottom: 10px;
}

.policy-hero h1 {
    font-size: clamp(30px, 5vw, 46px);
    line-height: 1.1;
    color: #111827;
    margin-bottom: 16px;
}

.policy-hero p {
    max-width: 820px;
    color: #4b5563;
    font-size: 16px;
    line-height: 1.75;
}

.policy-contact-chips {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.policy-contact-chips a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid #fecdd3;
    background-color: #fff;
    color: #be123c;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.policy-contact-chips a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(190, 18, 60, 0.15);
}

.policy-agreement {
    border-left: 4px solid #ff2d55;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 8px 28px rgba(17, 24, 39, 0.06);
    padding: 16px 18px;
    color: #1f2937;
    line-height: 1.8;
    margin-bottom: 22px;
}




.policy-summary-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(140deg, #ff2d55 0%, #ff6b6b 100%);
    color: #fff;
    margin-bottom: 14px;
}

.policy-summary-card h2 {
    color: #111827;
    margin-bottom: 10px;
    font-size: 22px;
}

.policy-summary-card p {
    color: #4b5563;
    line-height: 1.75;
}


.policy-block h2 {
    color: #111827;
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 16px;
}



.policy-list li {
    position: relative;
    padding: 14px 16px 14px 54px;
    border-radius: 12px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    color: #374151;
    line-height: 1.7;
}

.policy-list li::before {
    counter-increment: policy-counter;
    content: counter(policy-counter);
    position: absolute;
    left: 14px;
    top: 14px;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: #111827;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.policy-list-long li::before {
    background: linear-gradient(140deg, #be123c 0%, #ff2d55 100%);
}
.policy-page-simple {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    color: #333;
    line-height: 1.8;
    background: #fff;
}

.policy-page-simple h1 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #111;
}

.policy-page-simple h2 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #111;
}

.policy-page-simple p {
    margin-bottom: 15px;
    font-size: 16px;
}

.policy-page-simple ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.policy-page-simple li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .policy-page-simple {
        padding: 15px;
    }

    .policy-page-simple h1 {
        font-size: 26px;
    }

    .policy-page-simple h2 {
        font-size: 20px;
    }

    .policy-page-simple p,
    .policy-page-simple li {
        font-size: 15px;
    }
}


.policy-footer-note p {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6b7280;
    font-weight: 700;
}

@media (max-width: 960px) {
    .policy-summary-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .policy-page {
        padding: 44px 14px 60px;
    }

    .policy-hero {
        padding: 24px;
        border-radius: 18px;
    }

    .policy-block {
        padding: 18px;
    }

    .policy-block h2 {
        font-size: 23px;
    }

    .policy-list li {
        padding: 12px 12px 12px 48px;
    }
}

/* Match Check Flow */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.matrimonial-match-action {
    margin-top: 8px;
}

.matrimonial-match-btn {
    width: 100%;
    border: 0;
    border-radius: 999px;
    padding: 12px 16px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.01em;
    background: #be123c;
   
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.matrimonial-match-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(255, 45, 85, 0.38);
}

.match-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 16, 35, 0.58);
    backdrop-filter: blur(4px);
    z-index: 120;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.match-modal-overlay.is-open {
    display: flex;
}

.match-modal-shell {
    width: min(100%, 760px);
    max-height: 95vh;
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.match-modal-shell::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

.match-modal-card {
    position: relative;
    border-radius: 22px;
    background: #fff;
    padding: 28px;
    box-shadow: 0 30px 70px rgba(9, 12, 28, 0.28);
}

.match-modal-wide {
    width: min(100%, 1060px);
    max-width: 1060px;
}

.match-hidden {
    display: none;
}

.match-close-btn {
    position: absolute;
    right: 14px;
    top: 14px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    background: #f3f4f6;
    color: #4b5563;
    cursor: pointer;
}

.match-modal-card h2 {
    font-size: clamp(28px, 4vw, 36px);
    line-height: 1.1;
    color: #111827;
    margin-bottom: 8px;
}

.match-subtitle {
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

.match-form-grid {
    display: grid;
    gap: 14px;
}

.match-form-section-title {
    margin-top: 6px;
    padding-top: 8px;
    border-top: 1px solid #f1f5f9;
    color: #ff2d55;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.match-phone-row,
.match-grid-2 {
    display: grid;
    gap: 10px;
}

.match-phone-row {
    grid-template-columns: 72px 1fr;
}

.match-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.match-label {
    font-size: 13px;
    color: #374151;
    margin-bottom: 6px;
    display: inline-block;
    font-weight: 600;
}

.match-form-grid input,
.match-form-grid select {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 11px 12px;
    font-size: 14px;
    color: #111827;
    background: #fff;
}

.match-form-grid input:focus,
.match-form-grid select:focus {
    outline: none;
    border-color: #ff2d55;
    box-shadow: 0 0 0 3px rgba(255, 45, 85, 0.14);
}

.match-helper-text {
    font-size: 12px;
    color: #6b7280;
}

.match-photo-upload-wrap {
    border: 1px dashed #fb7185;
    border-radius: 12px;
    background: linear-gradient(160deg, #fff1f2 0%, #fff7f8 100%);
    padding: 12px;
    display: grid;
    gap: 8px;
}

.match-photo-input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.match-photo-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 9px 14px;
    border-radius: 999px;
    background: linear-gradient(120deg, #ff2d55 0%, #ff6b6b 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 18px rgba(255, 45, 85, 0.26);
    transition: transform 0.2s ease;
}

.match-photo-trigger:hover {
    transform: translateY(-1px);
}

.match-photo-name {
    font-size: 13px;
    color: #374151;
    font-weight: 600;
    word-break: break-word;
}

.match-otp-row {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
}

.match-otp-input {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    padding: 8px;
}

.match-primary-btn,
.match-outline-btn {
    border-radius: 999px;
    height: 46px;
    padding: 0 18px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.match-primary-btn {
    border: 0;
    color: #fff;
    background: linear-gradient(120deg, #ff2d55 0%, #ff6b6b 100%);
    box-shadow: 0 10px 22px rgba(255, 45, 85, 0.32);
}

.match-primary-btn:hover {
    transform: translateY(-2px);
}

.match-outline-btn {
    border: 1px solid #fda4af;
    color: #e11d48;
    background: #fff;
}

.match-outline-btn:hover {
    background: #fff1f2;
}

.match-badge {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    background: #fff1f2;
    color: #e11d48;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
}

.match-score-ring {
    width: 160px;
    height: 160px;
    margin: 12px auto;
    border-radius: 50%;
    background: conic-gradient(#ff2d55 0deg, #ff2d55 315deg, #e5e7eb 315deg);
    display: grid;
    place-items: center;
}

.match-score-ring-inner {
    width: 124px;
    height: 124px;
    background: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-align: center;
}

.match-score-ring-inner strong {
    font-size: 38px;
    color: #e11d48;
    line-height: 1;
}

.match-score-ring-inner span {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b7280;
}

.match-positive {
    text-align: center;
    color: #16a34a;
    font-weight: 700;
    margin-bottom: 14px;
}

.match-mini-title {
    color: #6b7280;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.match-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.match-mini-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 10px;
    display: grid;
    gap: 4px;
    color: #374151;
}

.match-mini-item i {
    color: #10b981;
}

.match-mini-item b {
    color: #16a34a;
    font-size: 11px;
    text-transform: uppercase;
}

.match-action-row {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.match-analysis-hero {
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    padding: 18px;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 16px;
    margin-bottom: 14px;
}

.match-analysis-score {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: conic-gradient(#ff2d55 0deg, #ff2d55 330deg, #e5e7eb 330deg);
    display: grid;
    place-items: center;
}

.match-analysis-score-inner {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: #fff;
    display: grid;
    place-items: center;
    text-align: center;
}

.match-analysis-score-inner strong {
    font-size: 30px;
    color: #e11d48;
}

.match-analysis-score-inner span {
    font-size: 10px;
    text-transform: uppercase;
    color: #6b7280;
}

.match-tag-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.match-tag-row span {
    border-radius: 999px;
    padding: 4px 10px;
    background: #f3f4f6;
    color: #374151;
    font-size: 12px;
    font-weight: 600;
}

.match-analysis-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 12px;
    margin-bottom: 12px;
}

.match-analysis-card {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 14px;
}

.match-analysis-card h3 {
    font-size: 18px;
    color: #111827;
    margin-bottom: 12px;
}

.match-compare-head {
    display: grid;
    grid-template-columns: 1fr 44px 1fr;
    gap: 10px;
    margin-bottom: 12px;
    text-align: center;
}

.match-compare-head img {
    width: 72px;
    height: 72px;
    border-radius: 999px;
    object-fit: cover;
    margin: 0 auto 6px;
    border: 3px solid #fde68a;
}

.match-compare-head span {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #ff2d55;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    justify-self: center;
}

.match-compare-head p {
    color: #111827;
    font-weight: 700;
}

.match-compare-head small {
    color: #6b7280;
}

.match-compare-table {
    display: grid;
    gap: 8px;
}

.match-compare-table div {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    border-top: 1px solid #f3f4f6;
    padding-top: 8px;
    color: #374151;
    font-size: 13px;
}

.match-compare-table div span:first-child {
    color: #6b7280;
    font-weight: 600;
}

.match-analysis-side {
    display: grid;
    gap: 12px;
}

.match-why-list {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 8px;
    color: #374151;
}

.match-verified-card {
    background: #0f172a;
    color: #dbeafe;
    text-align: center;
}

.match-verified-card i {
    font-size: 24px;
    color: #fb7185;
}

.match-verified-card h4 {
    margin-top: 8px;
    margin-bottom: 6px;
    color: #fff;
}

.match-verified-card p {
    font-size: 13px;
    line-height: 1.6;
}

.match-progress-list {
    display: grid;
    gap: 12px;
}

.match-progress-list div {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 6px;
    align-items: center;
    color: #374151;
    font-size: 13px;
    font-weight: 700;
}

.match-progress-list div i {
    grid-column: 1 / 3;
    height: 8px;
    border-radius: 999px;
    background: #e5e7eb;
    overflow: hidden;
}

.match-progress-list div i em {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #ff2d55, #fb7185);
}

@media (max-width: 860px) {
    .match-modal-card {
        padding: 20px;
    }

    .match-analysis-grid {
        grid-template-columns: 1fr;
    }

    .match-analysis-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .match-analysis-score {
        margin: 0 auto;
    }
}

@media (max-width: 560px) {
    .match-grid-2,
    .match-action-row,
    .match-mini-grid {
        grid-template-columns: 1fr;
    }

    .match-phone-row {
        grid-template-columns: 58px 1fr;
    }

    .match-compare-table div {
        grid-template-columns: 1fr;
    }

    .match-modal-shell {
        width: 100%;
    }
}

/* Home FAQ Section */
.home-faq-section {
    padding: 96px 0;
    background: #ffffff;
}

.home-faq-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.home-faq-header {
    text-align: center;
    margin-bottom: 26px;
}

.home-faq-chip {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: #e11d48;
    background: #ffe4ea;
    border-radius: 999px;
    padding: 6px 11px;
    margin-bottom: 12px;
}

.home-faq-header h2 {
    margin: 0;
    font-size: 2.25rem;
    line-height: 1.2;
    font-weight: 800;
    white-space: nowrap;
    margin-bottom: 10px;
}

.home-faq-header p {
    color: #6b7280;
    font-size: 22px;
    max-width: 760px;
    margin: 0 auto;
}

.home-faq-list {
    display: grid;
    gap: 12px;
}

.home-faq-item {
    border: 1px solid #fbcfe8;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(236, 72, 153, 0.08);
}

.home-faq-question {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 20px 22px;
    display: grid;
    grid-template-columns: 46px 1fr 24px;
    gap: 14px;
    align-items: center;
    text-align: left;
    color: #111827;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
}

.home-faq-icon {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: #ffe4ea;
    color: #e11d48;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.home-faq-arrow {
    color: #e11d48;
    font-size: 16px;
    transition: transform 0.2s ease;
}

.home-faq-answer {
    max-height: 0;
    overflow: hidden;
    color: #4b5563;
    line-height: 1.8;
    font-size: 17px;
    padding: 0 22px;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.home-faq-item.is-open .home-faq-answer {
    max-height: 280px;
    padding: 0 22px 20px 22px;
}

.home-faq-item.is-open .home-faq-arrow {
    transform: rotate(180deg);
}

.home-faq-support-card {
    margin-top: 22px;
    border: 1px solid #fbcfe8;
    background: #fff;
    border-radius: 18px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 8px 18px rgba(236, 72, 153, 0.08);
}

.home-faq-support-avatars {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.home-faq-support-avatars img {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 2px solid #fff;
    margin-left: -8px;
}

.home-faq-support-avatars img:first-child {
    margin-left: 0;
}

.home-faq-support-card h3 {
    font-size: 38px;
    color: #111827;
    margin-bottom: 6px;
}

.home-faq-support-card p {
    color: #6b7280;
    font-size: 22px;
    margin-bottom: 14px;
}

.home-faq-support-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.home-faq-contact-btn,
.home-faq-chat-btn {
    border-radius: 999px;
    padding: 13px 18px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.home-faq-contact-btn {
    background: linear-gradient(120deg, #ff2d55 0%, #b91c1c 100%);
    color: #fff;
}

.home-faq-chat-btn {
    background: #f3f4f6;
    color: #111827;
}

@media (max-width: 640px) {
    .home-faq-section {
        padding: 60px 0;
    }

    .home-faq-question {
        font-size: 20px;
        padding: 14px;
    }

    .home-faq-support-card h3 {
        font-size: 28px;
    }
}

/* Help Center Page */
.help-center-page {
    background: linear-gradient(180deg, #f5f7fb 0%, #eef2f8 100%);
    padding: 44px 16px 64px;
}

.help-center-wrap {
    max-width: 1160px;
    margin: 0 auto;
}

.help-center-hero {
    text-align: center;
    margin-bottom: 24px;
}

.help-center-chip {
    display: inline-block;
    border-radius: 999px;
    padding: 6px 12px;
    background: #e9f8ff;
    color: #0284c7;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.help-center-hero h1 {
    margin: 12px 0 10px;
    color: #111827;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
}

.help-center-hero p {
    color: #4b5563;
    max-width: 720px;
    margin: 0 auto;
}

.help-center-block {
    margin-top: 20px;
}

.help-center-block h2 {
    margin-bottom: 10px;
    color: #1f2937;
    font-size: 34px;
    font-weight: 700;
}

.help-center-topic-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.help-center-topic-card,
.help-center-wide-link {
    border: 1px solid #dbe3ef;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 3px 10px rgba(17, 24, 39, 0.05);
    text-decoration: none;
    color: #0891b2;
    font-size: 18px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.help-center-topic-card:hover,
.help-center-wide-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(17, 24, 39, 0.1);
}

.help-center-topic-card i,
.help-center-wide-link i {
    color: #94a3b8;
    font-size: 22px;
    width: 42px;
    text-align: center;
}

.help-center-wide-link {
    width: 100%;
}

.help-center-contact-card {
    border: 1px solid #dbe3ef;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 3px 10px rgba(17, 24, 39, 0.05);
    padding: 24px 20px;
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: 14px;
    align-items: center;
}

.help-center-contact-card i {
    color: #94a3b8;
    font-size: 30px;
}

.help-center-contact-card h3 {
    margin: 0 0 4px;
    color: #334155;
    font-size: 42px;
}

.help-center-contact-card p {
    margin: 0;
    color: #0891b2;
    font-size: 28px;
}

.help-center-btn {
    border-radius: 999px;
    padding: 11px 18px;
    text-decoration: none;
    background: linear-gradient(120deg, #ff2d55 0%, #ff6b6b 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
}

@media (max-width: 900px) {
    .help-center-topic-grid {
        grid-template-columns: 1fr;
    }

    .help-center-contact-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .help-center-contact-card i {
        justify-self: center;
    }
}

/* Help Topic Detail */
.help-topic-page {
    background: #f3f4f6;
    padding: 26px 16px 60px;
}

.help-topic-wrap {
    max-width: 1160px;
    margin: 0 auto;
}

.help-topic-breadcrumb {
    margin: 0 0 14px;
    color: #9ca3af;
    font-size: 18px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.help-topic-breadcrumb a {
    color: #9ca3af;
    text-decoration: none;
}

.help-topic-card {
    border: 1px solid #dbe3ef;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    padding: 18px 20px 8px;
}

.help-topic-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.help-topic-head h1 {
    margin: 0;
    font-size: 24px;
    color: #374151;
    font-weight: 400;
}

.help-topic-back {
    color: #06b6d4;
    text-decoration: none;
    font-size: 18px;
    white-space: nowrap;
}

.help-topic-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.help-topic-list li a {
    display: flex;
    gap: 12px;
    padding: 12px 4px;
    text-decoration: none;
    color: #06b6d4;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
}

.help-topic-list li a i {
    color: #9ca3af;
    margin-top: 4px;
    font-size: 16px;
}

.help-topic-contact {
    margin-top: 20px;
}

.help-topic-contact h2 {
    margin: 0 0 10px;
    color: #374151;
    font-size: 20px;
    font-weight: 400;
}

.help-topic-contact-card {
    border: 1px solid #dbe3ef;
    border-radius: 6px;
    background: #fff;
    padding: 18px 20px;
    display: grid;
    grid-template-columns: 42px 1fr auto;
    gap: 14px;
    align-items: center;
}

.help-topic-contact-card i {
    color: #9ca3af;
    font-size: 34px;
}

.help-topic-contact-card h3 {
    margin: 0;
    color: #475569;
    font-size: 22px;
    font-weight: 500;
}

.help-topic-contact-card p {
    margin: 2px 0 0;
    color: #06b6d4;
    font-size: 16px;
}

@media (max-width: 900px) {
    .help-topic-breadcrumb {
        font-size: 14px;
    }

    .help-topic-head h1 {
        font-size: 22px;
    }

    .help-topic-back {
        font-size: 17px;
    }

    .help-topic-list li a {
        font-size: 16px;
    }

    .help-topic-contact h2 {
        font-size: 18px;
    }

    .help-topic-contact-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .help-topic-contact-card h3 {
        font-size: 20px;
    }

    .help-topic-contact-card p {
        font-size: 15px;
    }
}

.help-answer-block {
    border-top: 1px solid #e5e7eb;
    margin-top: 8px;
    padding-top: 16px;
}

.help-answer-block h2 {
    margin: 0 0 12px;
    color: #111827;
    font-size: 30px;
    line-height: 1.3;
}

.help-answer-block p {
    margin: 0 0 12px;
    color: #4b5563;
    line-height: 1.75;
}

.help-answer-block ol {
    margin: 0 0 16px;
    padding-left: 20px;
    color: #4b5563;
    line-height: 1.7;
    display: grid;
    gap: 6px;
}

.help-answer-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.help-answer-chat {
    border-radius: 999px;
    padding: 11px 18px;
    text-decoration: none;
    border: 1px solid #d1d5db;
    color: #111827;
    font-size: 15px;
    font-weight: 700;
    background: #fff;
}

/* Timed App Promo Popup */
.app-promo-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.36);
    backdrop-filter: blur(3px);
    z-index: 130;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.app-promo-overlay.is-open {
    display: flex;
}

.app-promo-modal {
    width: min(500px, 100%);
    height: auto;
    border-radius: 0;
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.22);
    position: relative;
    overflow: hidden;
    background: transparent;
    padding: 0;
    margin: 0;
}

.app-promo-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: #1f2937;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-promo-close:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.app-promo-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.app-promo-register-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: inline-block;
    background: linear-gradient(135deg, #ff2d55, #ff6b6b);
    color: white;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(255, 45, 85, 0.4);
    transition: all 0.3s;
    text-align: center;
    width: auto;
    z-index: 5;
}

.app-promo-register-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 45, 85, 0.5);
}

@media (max-width: 860px) {
    .app-promo-modal {
        width: min(400px, 100%);
        height: auto;
        border-radius: 0;
    }

    .app-promo-register-btn {
        padding: 8px 18px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .app-promo-modal {
        width: 100%;
        height: auto;
        border-radius: 0;
    }

    .app-promo-close {
        width: 32px;
        height: 32px;
        font-size: 14px;
        top: 10px;
        right: 10px;
    }

    .app-promo-register-btn {
        padding: 8px 16px;
        font-size: 12px;
        bottom: 15px;
        right: 15px;
    }
}

/* Flexbox */
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-x-6 > * + * { margin-left: 1.5rem; }
.space-x-8 > * + * { margin-left: 2rem; }

/* Grid */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

/* Spacing */
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }

.m-4 { margin: 1rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }

/* Typography */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }

.font-light { font-weight: 300; }


.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

.text-center { text-align: center; }
.leading-tight { line-height: 1.25; }

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.btn-secondary {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
    cursor: pointer;
}
.flex items-center{
    margin-left: -20px;
}
.btn-secondary:hover {
    background-color: var(--primary);
    color: white;
}

/* Forms */
input, select, textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 45, 85, 0.1);
}

label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 15px;
    z-index: 80;
    margin: 0;
    /* border-radius: 22px; */
    background: white;
    /* background: linear-gradient(120deg, rgba(75, 85, 99, 0.56), rgba(107, 114, 128, 0.42)) !important; */
    border: 1px solid rgba(255, 255, 255, 0.26);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(18px) saturate(165%);
    -webkit-backdrop-filter: blur(18px) saturate(165%);
    transition: transform 0.28s ease, opacity 0.28s ease;
    will-change: transform;
}
.navbar.is-hidden {
    transform: translateY(-130%);
    opacity: 0.96;
}

main > .hero-video-section:first-child {
    margin-top: calc(-1 * var(--navbar-offset));
}

.navbar::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.03));
}

.navbar .h-16 {
    height: 4.3rem;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

.navbar .text-gray-700 {
    color: #4b5563;
    position: relative;
    padding-bottom: 3px;
    font-weight: 500;
    transition: color 0.22s ease;
}



.navbar .text-gray-700::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #B51536, #e83368);
    border-radius: 2px;
    transition: width 0.25s ease;
}

.navbar .text-gray-700:hover {
    color: #B51536;
}

.navbar .text-gray-700:hover::after {
    width: 100%;
}

.navbar .text-gray-700.active-nav-link {
    color: #B51536;
    font-weight: 600;
}

.navbar .text-gray-700.active-nav-link::after {
    width: 100%;
}

.navbar-mobile-menu-btn {
    background: rgba(255, 255, 255, 0.58);
    border-color: rgba(255, 255, 255, 0.85);
}

/* Navbar link styling */
.navbar a,
.navbar a:visited,
.navbar a:hover,
.navbar a:focus {
    text-decoration: none;
}

.navbar-mobile-actions {
    display: none;
    align-items: center;
    gap: 12px;
}

.navbar-mobile-login {
    color: #ff2d55;
    font-weight: 600;
    font-size: 1rem;
}

.navbar-mobile-menu-btn {
    width: 36px;
    height: 36px;
    border: 1px solid #cfd3da;
    border-radius: 6px;
    background: #ffffff;
    color: #4b5563;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.mobile-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 39, 0.35);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease;
    z-index: 45;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(82vw, 320px);
    background: #ffffff;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.14);
    transform: translateX(100%);
    transition: transform 0.26s ease;
    z-index: 46;
    padding: 14px 16px;
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid #eceef2;
    margin-bottom: 12px;
    color: #111827;
    font-weight: 700;
}

.mobile-drawer-close {
    border: 1px solid #d4d9e1;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background: #ffffff;
    color: #374151;
}

.mobile-drawer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-drawer-links a {
    color: #2f3640;
    font-size: 1.05rem;
    font-weight: 500;
    padding: 8px 2px;
    border-bottom: 1px solid #f0f2f6;
}

.mobile-drawer.is-open {
    transform: translateX(0);
}

.mobile-drawer-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 767px) {
    html {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        overflow: hidden !important;
        margin: 0;
        padding: 0;
        scrollbar-width: none;
    }

    body {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        height: 100dvh;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        margin-right: 0 !important;
        padding-right: 0 !important;
        scrollbar-gutter: auto;
        scrollbar-width: none;
    }

    main {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .container,
    .container-fluid,
    .navbar-container,
    .hero-section,
    .hero-inner,
    .hero-video-section,
    .hero-video-inner,
    .hero-video-search-card {
        width: 100% !important;
        max-width: 100% !important;
    }

    .container,
    .container-fluid,
    .navbar-container {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    body > *,
    main > * {
        max-width: 100%;
    }

    img,
    video {
        max-width: 100%;
        height: auto;
    }

    * {
        scrollbar-width: none;
    }

    html::-webkit-scrollbar,
    body::-webkit-scrollbar,
    *::-webkit-scrollbar {
        width: 0;
        height: 0;
        display: none;
    }

    body::-webkit-scrollbar-track,
    html::-webkit-scrollbar-track,
    *::-webkit-scrollbar-track,
    body::-webkit-scrollbar-thumb,
    html::-webkit-scrollbar-thumb,
    *::-webkit-scrollbar-thumb {
        background: transparent !important;
    }

    :root {
        --navbar-offset: 78px;
    }

    .navbar {
        top: 8px;
        left: 14px;
        right: 14px;
        border-radius: 16px;
    }

    .navbar .h-16 {
        height: 3.9rem;
        padding: 0 8px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .navbar .hidden.md\:flex {
        display: none !important;
    }

    .navbar-mobile-actions {
        display: inline-flex !important;
        flex-shrink: 0;
        gap: 6px;
        margin-left: auto;
        transform: none;
    }

    .navbar .logo-card {
        width: 42px;
        height: 42px;
    }

    .navbar .h-16 > .flex.items-center {
        min-width: 0;
        flex: 1;
    }

    .navbar .h-16 > .flex.items-center > a {
        min-width: 0;
    }

    .navbar .text-xl {
        font-size: 0.84rem;
        max-width: 122px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .navbar-mobile-login {
        font-size: 0.86rem;
    }

    .navbar-mobile-menu-btn {
        width: 30px;
        height: 30px;
        border-radius: 5px;
        font-size: 1rem;
        flex-shrink: 0;
    }

    /* Mobile-only: avoid fixed-layout overflow artifacts on the right edge */
    body {
        padding-top: 0 !important;
    }

    .navbar {
        position: sticky !important;
        top: 0 !important;
        left: auto !important;
        right: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        border-radius: 0 0 16px 16px;
    }

    main > .hero-video-section:first-child {
        margin-top: 0 !important;
    }
}

/* Hero Section */
.hero-gradient {
    background: linear-gradient(135deg, #ff9a56 0%, #ff2d55 100%);
}

.gradient-text {
    /* background: linear-gradient(90deg, #ff8a00 0%, var(--primary) 50%, #ff5e62 100%); */
    -webkit-background-clip: text;
    background: #B51536;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none !important;
    display: inline-block;
}

.no-underline,
.no-underline:hover,
.no-underline:focus,
.no-underline:visited,
.no-underline:active {
    text-decoration: none !important;
}

.register-btn {
    background: linear-gradient(90deg, #ff0a68 0%, #ff9a5a 100%);
    border-radius: 9999px;
    min-width: 140px;
    height: 32px;
    padding: 0 20px;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.register-btn:hover {
    background: linear-gradient(90deg, #ff0a68 0%, #ff9a5a 100%);
    transform: translateY(0);
    box-shadow: none;
}

.register-btn.text-sm {
    font-size: 0.9rem;
    min-width: 132px;
    height: 30px;
    padding: 0 16px;
    border-radius: 9999px;
}

/* Cards */
.card-shadow {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.card-shadow:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

/* Images */
img {
    max-width: 100%;
    height: auto;
}

.object-cover { object-fit: cover; }

/* Logo card */
.logo-card {
    display: inline-block;
    background: #ffffff;
    border: solid;
    border-radius: 0px;
    border: 1px solid #b51536;
}
.logo-card img {
    width: 32px;
    height: 32px;
    display: block;
}

/* Animations */
.transition-all { transition: all 0.3s ease; }
.transition-colors { transition: color 0.3s ease, background-color 0.3s ease; }
.transition-shadow { transition: box-shadow 0.3s ease; }

/* Hover States */
.hover\:text-primary:hover { color: var(--primary); }
.hover\:text-primary\/80:hover { color: rgba(255, 45, 85, 0.8); }
.hover\:bg-primary:hover { background-color: var(--primary); }
.hover\:bg-primary\/10:hover { background-color: rgba(255, 45, 85, 0.1); }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .navbar-container {
        padding-left: 0;
        padding-right: 0;
    }
    
    .hidden.md\:block {
        display: none;
    }
    
    .md\:hidden {
        display: block;
    }
    
    .md\:flex {
        display: none;
    }
    
    .md\:grid-cols-2 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    
    .md\:grid-cols-3 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    
    .md\:grid-cols-4 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    
    .text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
    
    .text-5xl {
        font-size: 2.5rem;
        line-height: 1;
    }
    
    .text-6xl {
        font-size: 3rem;
        line-height: 1;
    }
}

@media (min-width: 768px) {
    .md\:block { display: block; }
    .md\:flex { display: flex; }
    .md\:hidden { display: none; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .lg\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
}

/* Specific Components */
.w-8 { width: 2rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-32 { width: 8rem; }
.w-80 { width: 20rem; }
.w-full { width: 100%; }

.h-8 { height: 2rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-32 { height: 8rem; }
.h-80 { height: 20rem; }
.h-96 { height: 24rem; }
.h-full { height: 100%; }

.mx-auto { margin-left: auto; margin-right: auto; }
.ml-auto { margin-left: auto; }
.mr-auto { margin-right: auto; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.top-0 { top: 0; }
.top-10 { top: 2.5rem; }
.top-20 { top: 5rem; }
.right-4 { right: 1rem; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

.inline-flex { display: inline-flex; }
.flex-col { flex-direction: column; }
.flex-shrink-0 { flex-shrink: 0; }

.overflow-hidden { overflow: hidden; }

.transform { transform: translateX(var(--tw-translate-x), translateY(var(--tw-translate-y))) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.rotate-45 { --tw-rotate: 45deg; }
.rotate-12 { --tw-rotate: 12deg; }
.-rotate-12 { --tw-rotate: -12deg; }

.opacity-20 { opacity: 0.2; }
.opacity-40 { opacity: 0.4; }
.opacity-60 { opacity: 0.6; }

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .5; }
}

/* Form validation errors */
.text-red-500 { color: #ef4444; }
.bg-red-500 { background-color: #ef4444; }
.bg-green-500 { background-color: #10b981; }
.bg-green-100 { background-color: #d1fae5; }
.border-green-400 { border-color: #4ade80; }
.text-green-700 { color: #15803d; }

/* Badge */
.inline-flex { display: inline-flex; }

/* Background gradients */
.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-primary { --tw-gradient-from: var(--primary); }
.to-secondary { --tw-gradient-to: var(--secondary); }
.from-orange-400 { --tw-gradient-from: #fb923c; }
.via-pink-400 { --tw-gradient-via: #f472b6; }
.to-primary { --tw-gradient-to: var(--primary); }

.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.from-orange-300 { --tw-gradient-from: #fdba74; }
.to-pink-400 { --tw-gradient-to: #f472b6; }

/* Focus styles */
.focus\:outline-none:focus { outline: none; }
.focus\:ring-2:focus { box-shadow: 0 0 0 3px rgba(255, 45, 85, 0.1); }
.focus\:border-transparent:focus { border-color: transparent; }

/* Border styles */
.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-gray-300 { border-color: var(--gray-300); }
.border-gray-700 { border-color: var(--gray-700); }
.border-primary { border-color: var(--primary); }

/* Shadow utilities */
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); }

/* Max width utilities */
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }

/* Hero Section Specific Styles */
.hero-section {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #f3f3f3;
    position: relative;
    overflow: hidden;
}

.hero-inner {
    position: relative;
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding-left: 60px;
    padding-right: 0;
    padding-top: 24px;
    overflow: visible;
}

.hero-grid {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.hero-left {
    max-width: 640px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: #f2cedd;
    color: #b11f62;
    border-radius: 999px;
    padding: 0.62rem 1.2rem;
    font-size: 1.05rem;
    margin-bottom: 1.4rem;
}

.hero-badge i {
    color: #ffcb2e;
    font-size: 1rem;
}

.hero-title {
    margin: 0;
    color: #171717;
    font-size: 4.2rem;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero-title-break {
    display: block;
    margin-top: 0.55rem;
}

.hero-gradient-text {
    background: linear-gradient(90deg, #fff30a 0%, #d3d307 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Video Variant */
.hero-video-section {
    min-height: 100vh;
    background: #111827;
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-video-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh;
    height: 56.25vw;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    border: 0;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 14, 26, 0.38) 0%, rgba(10, 14, 26, 0.55) 100%);
}

.hero-video-inner {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    max-width: 1360px;
    margin: 0 auto;
    padding: 92px 20px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-video-content {
    text-align: center;
    max-width: 860px;
}

.hero-video-badge {
    background: rgba(255, 255, 255, 0.22);
    color: #ffffff;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-video-badge i {
    color: #ff3a74;
}

.hero-video-title
 {
    margin-top: 110px;
    color: #fff5d0;
    font-size: clamp(33px, 5vw, 44px);
    font-family: 'Poppins', sans-serif;
}

.hero-video-description {
    color: rgba(255, 255, 255, 0.88);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-video-content .hero-description.hero-video-description {
    color: #ffffff;
}

.hero-video-cta {
    margin-top: 6px;
}

.hero-video-search-card {
    width: min(1200px, 100%);
    margin-top: 18px;
background: rgba(255, 255, 255, 0.244);
    border: 1px solid rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    box-shadow: 0 14px 35px rgba(16, 24, 40, 0.24);
    padding: 16px;
}

.hero-video-search-card .hero-search-form {
    gap: 12px;
}

.hero-video-search-card .hero-search-field label {
    color: #ffffff;
}

@media (max-width: 768px) {
    .hero-video-section,
    .hero-video-inner {
        min-height: 92vh;
    }

    .hero-video-inner {
        padding-top: 70px;
    }

    .hero-video-search-card {
        margin-top: 20px;
        border-radius: 14px;
        padding: 12px;
    }
}

.hero-description {
    margin: 1.1rem 0 1.3rem;
    color: #58606c;
    font-size: 1.15rem;
    line-height: 1.48;
    max-width: 560px;
}

.hero-action-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #B51536;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 45, 85, 0.3);
}

.hero-cta i {
    font-size: 1rem;
}

.hero-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(255, 62, 114, 0.3);
}

.hero-avatars {
    display: inline-flex;
    align-items: center;
    position: relative;
    padding-right: 14px;
}

.hero-avatar {
    width: 70px;
    height: 55px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    margin-left: -15px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.hero-avatar:first-child {
    margin-left: 0;
}

.hero-avatar-check {
    position: absolute;
    right: -2px;
    bottom: -2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #2a9df4;
    border: 2px solid #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.66rem;
}

.hero-action-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
    flex-wrap: nowrap;
}

.trust-indicators {
    display: flex;
    gap: 1.6rem;
    margin-top: 0;
    margin-left: 30px;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #B51536;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 45, 85, 0.3);
}

@media (max-width: 768px) {
    .hero-action-row {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .trust-indicators {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.48rem;
    color: #232325;
    font-size: 0.92rem;
    white-space: nowrap;
}

.trust-item i {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.68rem;
    color: #ffffff;
}

.trust-item:first-child i {
    background: #20b15a;
}

.trust-item:last-child i {
    background: #ef4a43;
}

.hero-right {
    position: relative;
    right: 0;
    height: 560px;
    margin-right: 100px;
    width: min(52vw, 760px);
    max-width: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-right: -120px;
    overflow: visible;
}

.hero-bg-shape {
    position: absolute;
    right: 0;
    top: -180px;
    width: 700px;
    height: 600px;
    transform: none;
    background: linear-gradient(160deg, #ff165f 0%, #ff8e00 100%);
    border-radius: 320px 0 0 320px;
    z-index: 0;
}

.hero-circle-frame {
    position: relative;
    width: 455px;
    height: 455px;
    border-radius: 50%;
    border: 7px solid #ffffff;
    background: #2b0f12;
    overflow: hidden;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
    z-index: 1;
    margin-right: 200px;
    top: -20px;
}

.hero-circle-dark {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #3a1b1c 0%, #170708 68%);
    z-index: 0;
    
}

.hero-couple {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
   
}

.leaf {
    position: absolute;
    width: 252px;
    opacity: 0.92;
    z-index: 2;
    animation: leaf-float 3.2s ease-in-out infinite;
}



.leaf3 {
    bottom: 126px;
    left: 24px;
    transform: rotate(-12deg);
    animation-delay: 1.6s;
}

.leaf4 {
    top: 20px;
    right: -2px;
    transform: rotate(20deg);
    animation-delay: 1.2s;
}

.leaf5 {
    bottom: 18px;
    right: 58px;
    transform: rotate(8deg);
    animation-delay: 2.1s;
}

@keyframes leaf-float {
    0%, 100% {
        transform: translateY(0) rotate(var(--leaf-rotate, 0deg));
    }
    50% {
        transform: translateY(-8px) rotate(var(--leaf-rotate, 0deg));
    }
}

.leaf1 { --leaf-rotate: 12deg; }
.leaf2 { --leaf-rotate: -25deg; }
.leaf3 { --leaf-rotate: -12deg; }
.leaf4 { --leaf-rotate: 20deg; }

/* Navbar Register Button - Premium Pill Design */
.navbar-register-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 10px 25px;
    background: #B51536;
    height: 40px;
    /* background: linear-gradient(135deg, #B51536, #ff8a5c); */
    color: #ffffff;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;
    font-size: 16px;
    font-family: 'Georgia', 'Playfair Display', serif;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: none;
    border: none;
    text-align: center;
    line-height: 1;
}

.navbar-register-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

.navbar-register-btn i {
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-register-btn {
        padding: 8px 20px;
        height: 36px;
        font-size: 14px;
    }
    
    .navbar-register-btn i {
        font-size: 12px;
    }
}

@media (max-width: 640px) {
    .navbar-register-btn {
        padding: 6px 16px;
        height: 32px;
        font-size: 12px;
    }
    
    .navbar-register-btn i {
        font-size: 10px;
    }
}

.matrimonial-featured-card {
    width: 380px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
    background: white;
    margin-top: 40px;
}

.matrimonial-featured-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
}

.matrimonial-card-image {
    position: relative;
    width: 100%;
    height: 335px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.matrimonial-profile-img {
    width: 100%;
    height: 80%;
    object-fit: cover;
    display: block;
}

.matrimonial-card-info {
    background: #f3f3f3;
    padding: 22px;
    border-radius: 0 0 20px 20px;
    height: 205px;
    margin-top: -60px;
    
}

.matrimonial-profile-name {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    margin-top: -20px;
}

.matrimonial-verification-badge {
    margin-top: -15px;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-left: -2px;
    flex-shrink: 0;
}

.matrimonial-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    margin-top: -30px;
}

.matrimonial-detail-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #555555;
}

.matrimonial-detail-icon {
    color: #ff2d75;
    font-size: 16px;
    margin-right: 8px;
    width: 18px;
    display: flex;
    justify-content: center;
}

.matrimonial-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.matrimonial-tag {
    padding: 6px 12px;
    background: #fff0f3;
    color: #ff2d75;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* Premium Matrimonial Profile Showcase */
.matrimonial-showcase-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
    position: relative;
}

.matrimonial-preview-card {
    width: 90px;
    height: 260px;
    border-radius: 0;
    opacity: 0.65;
    transform: scale(0.85);
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    cursor: pointer;
}

.matrimonial-preview-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0 !important;
}

.matrimonial-preview-card:hover {
    opacity: 1;
    transform: scale(0.95);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.matrimonial-slider-controls {
    max-width: 980px;
    margin: 22px auto 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

#matrimonial-prev {
    justify-self: start;
}

#matrimonial-next {
    justify-self: end;
}

.matrimonial-slider-btn {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid #dadde3;
    background: #ffffff;
    color: #1f2937;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.matrimonial-slider-btn:hover {
    background: #111827;
    color: #ffffff;
}

.matrimonial-slider-indicators {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.matrimonial-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: none;
    background: #c9cdd5;
    cursor: pointer;
    transition: all 0.25s ease;
}

.matrimonial-slider-dot.active {
    background: #ff2d55;
    transform: scale(1.2);
}

.matrimonial-featured-card {
    width: 380px;
    border-radius: 20px;
    box-shadow: 10px 10px 80px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
    background: white;
}

.matrimonial-featured-card:hover {
    transform: translateY(-8px);
    box-shadow: 10px 10px 90px 50px  rgba(0, 0, 0, 0.25);
}

/* Responsive Design for Matrimonial Showcase */
@media (max-width: 1200px) {
    .matrimonial-showcase-container {
        gap: 25px;
    }
    
    .matrimonial-preview-card {
        width: 80px;
        height: 240px;
    }
    
    .matrimonial-featured-card {
        width: 295px;
    }
}

@media (max-width: 768px) {
    .matrimonial-showcase-container {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 14px;
        align-items: center;
        overflow-x: hidden;
        overflow-y: hidden;
        padding: 12px 4px;
        justify-content: center;
        scroll-snap-type: none;
    }
    
    .matrimonial-preview-card {
        display: none;
    }
    
    .matrimonial-featured-card {
        width: 340px;
        max-width: 340px;
        order: 0;
        margin-top: 0;
        scroll-snap-align: none;
        flex-shrink: 0;
        margin-left: auto;
        margin-right: auto;
    }
    
    .matrimonial-preview-card:hover {
        transform: scale(1);
    }

    .matrimonial-slider-controls {
        max-width: 320px;
        margin-top: 16px;
    }
}

@media (max-width: 640px) {
    .matrimonial-preview-card {
        width: 100px;
        height: 180px;
    }
}

/* Premium Profile Showcase */
.profile-showcase-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.profile-preview-card {
    width: 90px;
    height: 240px;
    opacity: 0.6;
    transform: scale(0.85);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.profile-preview-card:hover {
    opacity: 1;
    transform: scale(0.9);
}

.profile-featured-card {
    width: 260px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
}

.profile-featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Profile Showcase */
@media (max-width: 1024px) {
    .profile-showcase-container {
        gap: 20px;
    }
    
    .profile-preview-card {
        width: 80px;
        height: 220px;
    }
    
    .profile-featured-card {
        width: 240px;
    }
}

@media (max-width: 768px) {
    .profile-showcase-container {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .profile-preview-card {
        width: 200px;
        height: 240px;
        opacity: 1;
        transform: scale(1);
    }
    
    .profile-featured-card {
        width: 100%;
        max-width: 320px;
    }
    
    .profile-preview-card:hover {
        transform: scale(1);
    }
}

@media (max-width: 640px) {
    .profile-preview-card {
        width: 180px;
        height: 220px;
    }
}

/* Verified Profiles Showcase */
.profile-card {
    width: 280px;
    transition: all 0.3s ease;
}

.center-card {
    width: 320px;
    transform: scale(1);
    opacity: 1;
}

.side-card {
    width: 200px;
    transform: scale(0.8);
    opacity: 0.6;
    filter: blur(0.5px);
}

.side-card:hover {
    transform: scale(0.95);
    opacity: 1;
    filter: blur(0);
}

/* Responsive Design for Verified Profiles */
@media (max-width: 1024px) {
    .profile-card {
        width: 240px;
    }
    
    .center-card {
        width: 280px;
    }
    
    .side-card {
        width: 180px;
    }
}

@media (max-width: 768px) {
    .profile-card {
        width: 100%;
        max-width: 320px;
    }
    
    .center-card,
    .side-card {
        width: 100%;
        max-width: 320px;
        transform: scale(1);
        opacity: 1;
        filter: blur(0);
        position: relative;
        margin-bottom: 1rem;
    }
    
    .side-card:hover {
        transform: scale(1);
    }
}

.hero-search-wrap {
    position: relative;
    z-index: 10;
    margin-top: -64px;
    padding-left: 60px;
    padding-right: 60px;
    padding-bottom: 40px;
}

.hero-search-inner {
    max-width: 1120px;
}

.hero-search-card {
    margin-top: 0;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(18, 19, 22, 0.1);
    border: 1px solid #ececf0;
    padding: 0.95rem;
}

.hero-search-form {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr)) 140px;
    gap: 0.8rem;
    align-items: end;
}

.hero-search-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.hero-search-field label {
    margin: 0;
    color: #707b90;
    font-size: 0.68rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.hero-search-field select {
    border: 1px solid #e5e9f0;
    background: #f8fafc;
    color: #2f3640;
    border-radius: 8px;
    height: 46px;
    padding: 0 0.9rem;
    font-size: 0.95rem;
}

.hero-search-btn {
    height: 46px;
    border: none;
    text-decoration: none;
    border-radius: 8px;
    background: #B51536;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
}

.hero-search-btn:hover {
    background: #e8005f;
}

.mobile-search-toggle-btn {
    display: none;
}

@media (max-width: 1080px) {
    .hero-inner {
        padding-left: 24px;
        padding-right: 24px;
        padding-top: 16px;
    }

    .hero-grid {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .hero-right {
        margin-right: 100px;
        height: 490px;
        width: 100%;
        justify-content: center;
    }

    .hero-bg-shape {
        right: -80px;
        top: 0;
        width: 620px;
        height: 540px;
        transform: none;
    }

    .hero-circle-frame {
        width: 400px;
        height: 400px;
    }

    .trust-indicators {
        width: 100%;
    }

    .hero-search-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-search-wrap {
        margin-top: -44px;
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 720px) {
    .hero-section {
        padding-top: 0;
        padding-bottom: 18px;
        margin-top: 0;
    }

    .hero-inner {
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-cta {
        height: 42px;
        font-size: 1rem;
        padding: 0 1.4rem;
    }

    .hero-avatar {
        width: 55px;
        height: 45px;
    }

    .hero-right {
        height: 420px;
        width: 100%;
        margin-right: 0;
        justify-content: center;
    }

    .hero-bg-shape {
        width: 560px;
        height: 460px;
        right: -180px;
        top: 0;
        transform: none;
        border-radius: 230px 0 0 230px;
    }

    .hero-circle-frame {
        width: 320px;
        height: 320px;
        border-width: 6px;
    }

    .leaf {
        width: 40px;
    }

    .hero-search-form {
        grid-template-columns: 1fr;
    }

    .hero-search-wrap {
        margin-top: -24px;
        padding-left: 12px;
        padding-right: 12px;
    }
}

@media (max-width: 480px) {
    .mobile-search-toggle-btn {
        display: inline-flex;
        grid-column: 1 / -1;
        justify-self: start;
        width: calc(100% - 14px);
        max-width: 360px;
        height: 44px;
        padding: 0 16px;
        border-radius: 999px;
        border: none;
        background: #ff0f69;
        color: #ffffff;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-size: 0.98rem;
        font-weight: 700;
        box-shadow: 0 8px 18px rgba(255, 15, 105, 0.24);
        margin-left: 0;
    }

    #mobile-search-panel {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        margin-top: 0;
        padding-bottom: 0;
        transition: max-height 0.28s ease, opacity 0.22s ease, margin-top 0.28s ease, padding-bottom 0.28s ease;
    }

    #mobile-search-panel.is-open {
        max-height: 560px;
        opacity: 1;
        margin-top: -8px;
        padding-bottom: 16px;
    }
}

/* Family Trust Section */
.family-trust-section {
    background: #efefef;
    padding: 30px 0 76px;
}

.family-trust-header {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.family-trust-chip {
    display: inline-block;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: #ff2d55;
    background: #f7eadf;
    border-radius: 999px;
    padding: 5px 10px;
    margin-bottom: 10px;
}

.family-trust-title {
    margin: 0;
    font-size: 2.25rem;
    line-height: 1.2;
    font-weight: 800;
    white-space: nowrap;
}

.family-trust-pink {
    color: #ea1167;
}

.family-trust-orange {
    color: #f18a00;
}

.family-trust-subtitle {
    margin: 16px auto 0;
    color: #737b86;
    font-size: clamp(1rem, 1.15vw, 1.1rem);
    line-height: 1.5;
    max-width: 530px;
}

.family-trust-content {
    max-width: 1220px;
    margin: 58px auto 0;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 390px minmax(0, 1fr);
    gap: 76px;
    align-items: start;
}

.family-trust-photos {
    position: relative;
    min-height: 452px;
    padding-bottom: 136px;
}

.family-trust-photo-main,
.family-trust-photo-sub {
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(26, 32, 44, 0.16);
}

.family-trust-photo-main {
    width: 372px;
    height: 332px;
    border-radius: 92px 92px 18px 18px;
}

.family-trust-photo-sub {
    width: 318px;
    height: 232px;
    border-radius: 70px 70px 12px 12px;
    position: absolute;
    left: 60;
    top:150px;
    bottom: 0;
    transform: translate(-34px, 34px);
}

.family-trust-photo-main img,
.family-trust-photo-sub img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.family-trust-points-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 52px;
}

.family-trust-point-col {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.family-trust-point-col-right {
    padding-top: 56px;
}

.family-trust-point-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.family-trust-point-number {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 4px solid #f7931a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 2.15rem;
    font-weight: 800;
    color: #ea1167;
    line-height: 1;
    background: #ffffff;
}

.family-trust-point-number::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px dotted #ff6f61;
}

.family-trust-point-copy h3 {
    margin: 0 0 4px;
    font-size: 1.66rem;
    line-height: 1.16;
    color: #1f1f1f;
    font-weight: 700;
}

.family-trust-point-copy p {
    margin: 0;
    color: #5f5f5f;
    font-size: 0.92rem;
    line-height: 1.45;
    max-width: 330px;
}

@media (max-width: 1100px) {
    .family-trust-content {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .family-trust-photos {
        margin: 0 auto;
    }

    .family-trust-point-col-right {
        padding-top: 0;
    }
}

@media (max-width: 768px) {
    .family-trust-section {
        padding: 24px 0 54px;
    }

    .family-trust-points-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .family-trust-point-col {
        gap: 24px;
    }

    .family-trust-point-copy h3 {
        font-size: 1.3rem;
    }

    .family-trust-title {
        font-size: 2.25rem;
        white-space: normal;
    }
}

@media (max-width: 640px) {
    .family-trust-content {
        margin-top: 34px;
        padding: 0 14px;
    }

    .family-trust-photos {
        min-height: 0;
        padding-bottom: 0;
    }

    .family-trust-photo-main {
        width: 100%;
        height: 260px;
        border-radius: 80px 30px 30px 30px;
    }

    .family-trust-photo-sub {
        width: 74%;
        height: 170px;
        position: static;
        transform: translate(0, -34px);
        margin-left: 0;
        border-radius: 70px 24px 20px 20px;
    }

    .family-trust-point-number {
        width: 58px;
        height: 58px;
        font-size: 1.8rem;
    }

    .family-trust-point-copy h3 {
        font-size: 1.1rem;
    }
}

/* Journey Steps Section */
.journey-steps-section {
    background: #efefef;
    padding: 42px 0 64px;
}

.journey-steps-header {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 16px;
}

.journey-steps-chip {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 999px;
    background: #f8dfe9;
    color: #ff2d55;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.journey-steps-title {
    margin: 0;
    font-size: 2.25rem;
    line-height: 1.2;
    font-weight: 800;
    white-space: nowrap;
}

.journey-steps-subtitle {
    margin: 14px auto 0;
    max-width: 580px;
    color: #66707c;
    font-size: 1.03rem;
    line-height: 1.5;
}

.journey-steps-grid {
    max-width: 1240px;
    margin: 62px auto 0;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.journey-step-card {
    position: relative;
    background: #f4f4f4;
    border: 1px solid #dedede;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 54px 24px 26px;
    text-align: center;
    min-height: 238px;
}

.journey-step-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: #b51536;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    font-weight: 800;
    line-height: 1;
}

.journey-step-icon {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    margin: 0 auto 14px;
    background: linear-gradient(135deg, #b51536  0%, #ea4f87 100%);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.journey-step-card h3 {
    margin: 0 0 8px;
    color: #1f2430;
    font-size: 1.9rem;
    line-height: 1.2;
    font-weight: 700;
}

.journey-step-card p {
    margin: 0;
    color: #6c7480;
    font-size: 0.92rem;
    line-height: 1.45;
}

.journey-steps-cta-wrap {
    text-align: center;
    margin-top: 48px;
    padding: 0 16px;
}

.journey-steps-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-width: 340px;
    height: 62px;
    border-radius: 999px;
    background: #b91c1c;
    color: #ffffff;
    font-size: 1.06rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(245, 0, 102, 0.2);
}

.journey-steps-cta:hover {
    color: #ffffff;
    text-decoration: none;
    filter: brightness(1.04);
}

.journey-steps-trust {
    margin: 14px 0 0;
    color: #7a838f;
    font-size: 0.86rem;
}

.journey-steps-trust i {
    color: #22b15a;
    margin-right: 6px;
}

/* Home Blog Section */
.home-blog-section {
    padding: 90px 0;
    
}

.home-blog-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.home-blog-header {
    text-align: center;
    margin-bottom: 30px;
}

.home-blog-chip {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: #fff1dc;
    color: #b45309;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.home-blog-header h2 {
    margin: 0;
    color: #b51536;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.1rem, 3vw, 3rem);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.home-blog-header p {
    margin: 12px auto 0;
    max-width: 760px;
    color: #6b7280;
    font-size: 1.02rem;
    line-height: 1.7;
}

.home-blog-grid {
    display: grid;
    grid-template-columns: repeat(10, minmax(0, 1fr));
    grid-template-rows: 420px 320px;
    gap: 18px;
    align-items: stretch;
}

.home-blog-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #f1debf;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(120, 74, 22, 0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
    height: 100%;
}

.home-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(120, 74, 22, 0.12);
}

.home-blog-card--featured {
    grid-column: 1 / span 7;
    grid-row: 1;
    min-height: 420px;
    padding-bottom: 106px;
}

.home-blog-card--tall {
    grid-column: 8 / span 3;
    grid-row: 1;
    min-height: 420px;
    padding-bottom: 20px;
}

.home-blog-card--small {
    grid-column: 1 / span 3;
    grid-row: 2;
    min-height: 320px;
    z-index: 2;
    padding-bottom: 18px;
}

.home-blog-card--wide {
    grid-column: 4 / span 3;
    grid-row: 2;
    min-height: 320px;
    z-index: 1;
    padding-bottom: 18px;
}

.home-blog-card--text {
    grid-column: 7 / span 4;
    grid-row: 2;
    min-height: 320px;
    z-index: 1;
    background: linear-gradient(180deg, #fffdf8 0%, #fff8ef 100%);
    padding-bottom: 18px;
}

.home-blog-card-media {
    position: relative;
    height: 100%;
    min-height: 100%;
    overflow: hidden;
    background: #f8efe3;
}

.home-blog-card--featured .home-blog-card-media {
    min-height: 272px;
}

.home-blog-card--tall .home-blog-card-media {
    min-height: 270px;
}

.home-blog-card--small .home-blog-card-media {
    min-height: 172px;
}

.home-blog-card--wide .home-blog-card-media {
    min-height: 158px;
}

.home-blog-card--text .home-blog-card-media {
    min-height: 84px;
    opacity: 0.88;
}

.home-blog-card--featured .home-blog-body,
.home-blog-card--small .home-blog-body,
.home-blog-card--wide .home-blog-body,
.home-blog-card--text .home-blog-body,
.home-blog-card--tall .home-blog-body {
    position: relative;
    z-index: 2;
    width: 85%;
    margin: -72px auto 0;
    background: rgb(252 246 237 / 72%);
    border: 1px solid rgba(183, 119, 54, 0.22);
    border-radius: 14px;
    box-shadow: 0 16px 30px rgba(92, 46, 9, 0.12);
    padding: 18px 18px 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.home-blog-card--featured .home-blog-body {
    width: 85%;
    margin-top: -90px;
    padding: 22px 22px 24px;
}

.home-blog-card--small .home-blog-body {
    width: 86%;
    margin-top: -58px;
    padding: 16px 16px 18px;
}

.home-blog-card--wide .home-blog-body {
    width: 86%;
    margin-top: -60px;
    padding: 16px 16px 18px;
}

.home-blog-card--text .home-blog-body {
    width: 88%;
    margin-top: -54px;
    padding: 16px 16px 18px;
}

.home-blog-card--tall .home-blog-body {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    width: 85%;
    margin: 0;
    padding: 18px;
}

.home-blog-card--featured .home-blog-body h3,
.home-blog-card--small .home-blog-body h3,
.home-blog-card--wide .home-blog-body h3,
.home-blog-card--text .home-blog-body h3,
.home-blog-card--tall .home-blog-body h3 {
    font-size: 1.38rem;
}

.home-blog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.home-blog-card:hover .home-blog-card-media img {
    transform: scale(1.04);
}

.home-blog-badge {
    position: absolute;
    left: 18px;
    top: 18px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 248, 236, 0.96);
    color: #8c2f2f;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 8px 16px rgba(92, 46, 9, 0.12);
}

.home-blog-body {
    padding: 20px 22px 22px;
}

.home-blog-body h3 {
    margin: 0 0 10px;
    color: #1f2937;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.42rem;
    line-height: 1.28;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.home-blog-body p {
    margin: 0 0 18px;
    color: #6b7280;
    font-size: 0.99rem;
    line-height: 1.65;
}

.home-blog-read-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    background: linear-gradient(120deg, #d97706 0%, #f59e0b 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(217, 119, 6, 0.18);
}

.home-blog-read-more:hover {
    color: #ffffff;
    text-decoration: none;
    filter: brightness(1.03);
}

.home-blog-cta-wrap {
    text-align: center;
    margin-top: 22px;
}

.home-blog-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 250px;
    min-height: 58px;
    padding: 0 22px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #b51536;
    color: #b51536;
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(120, 74, 22, 0.08);
}

.home-blog-cta:hover {
    color: #9a3412;
    text-decoration: none;
    background: #fff7ed;
}

@media (max-width: 1024px) {
    .home-blog-section {
        padding: 72px 0;
    }

    .home-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto;
        gap: 16px;
    }

    .home-blog-card--featured {
        grid-column: 1 / span 2;
        min-height: 460px;
    }

    .home-blog-card--tall {
        grid-column: 1 / span 1;
        min-height: 380px;
    }

    .home-blog-card--small,
    .home-blog-card--wide,
    .home-blog-card--text {
        grid-column: auto;
        min-height: 300px;
    }

    .home-blog-card--featured .home-blog-body,
    .home-blog-card--small .home-blog-body,
    .home-blog-card--wide .home-blog-body,
    .home-blog-card--text .home-blog-body,
    .home-blog-card--tall .home-blog-body {
        width: 88%;
    }
}

@media (max-width: 768px) {
    .home-blog-section {
        padding: 60px 0;
    }

    .home-blog-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .home-blog-card--featured,
    .home-blog-card--tall,
    .home-blog-card--small,
    .home-blog-card--wide,
    .home-blog-card--text {
        grid-column: auto;
        min-height: auto;
    }

    .home-blog-card-media {
        min-height: 200px;
    }

    .home-blog-card--featured .home-blog-card-media {
        min-height: 240px;
    }

    .home-blog-card--tall .home-blog-card-media {
        min-height: 220px;
    }

    .home-blog-card--text .home-blog-card-media {
        min-height: 120px;
    }

    .home-blog-card--featured .home-blog-body,
    .home-blog-card--small .home-blog-body,
    .home-blog-card--wide .home-blog-body,
    .home-blog-card--text .home-blog-body,
    .home-blog-card--tall .home-blog-body {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        width: calc(100% - 24px);
        margin: -42px auto 0;
        padding: 16px;
    }

    .home-blog-body h3 {
        font-size: 1.2rem;
    }

    .home-blog-header {
        margin-bottom: 26px;
    }
}

/* Stories Page */
.stories-page--editorial {
    background: #fcf8f2;
    color: #1f2937;
}

.stories-hero--editorial {
    min-height: 300px;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(180deg, rgba(255, 248, 237, 0.9), rgba(252, 248, 242, 0.96)),
        url('https://i.pinimg.com/1200x/9b/9b/65/9b9b65f4f5e3d95c0d19b2dfc4eb27ad.jpg') center/cover no-repeat;
}

.stories-hero-inner--editorial {
    width: min(840px, 100%);
    text-align: center;
}

.stories-chip,
.stories-section-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: #f8e7d0;
    color: #8c2f2f;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.stories-hero-inner--editorial h1 {
    margin: 14px 0 16px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.stories-search--editorial {
    width: min(640px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 56px;
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid #ead7bf;
    box-shadow: 0 10px 22px rgba(92, 46, 9, 0.06);
}

.stories-search--editorial input {
    height: 56px;
    border: 0;
    outline: none;
    padding: 0 18px;
    font-size: 0.98rem;
    background: rgba(255, 255, 255, 0.96);
}

.stories-search--editorial button {
    border: 0;
    background: linear-gradient(120deg, #8c2f2f 0%, #b91c1c 100%);
    color: #fff;
}

.stories-tags--editorial {
    margin-top: 14px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.stories-tags--editorial span {
    padding: 8px 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #efdcbc;
    color: #7f2d2d;
    font-size: 0.86rem;
    font-weight: 700;
}

.stories-feature-hero {
    max-width: 1240px;
    margin: 0 auto;
    padding: 34px 20px 0;
    display: grid;
    grid-template-columns: 7fr 3fr;
    gap: 18px;
    align-items: stretch;
}

.stories-feature-main {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    height: 400px;
    border: 1px solid #eadcc8;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 22px rgba(92, 46, 9, 0.05);
}

.stories-feature-main-media img {
    width: 100%;
    height: 100%;
    object-fit: inherit;
    object-position: center top;
    display: block;
}

.stories-feature-main-body {
    height: 100%;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
    overflow: hidden;
}

.stories-feature-top,
.stories-feature-bottom {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
}

.stories-feature-top-left {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 0;
}

.stories-feature-copy {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}

.stories-feature-copy h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.55rem, 2vw, 2.15rem);
    line-height: 1.1;
    font-weight: 700;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.stories-feature-copy p {
    margin: 0;
    color: #6b7280;
    font-size: 0.94rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.stories-feature-micro-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: #8b8b8b;
    font-size: 0.82rem;
}

.stories-feature-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: #5b4b3c;
}

.stories-feature-author span {
    font-weight: 700;
}

.stories-feature-author small,
.stories-feature-meta--top {
    color: #8b8b8b;
    font-size: 0.8rem;
}

.stories-feature-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.stories-feature-tags {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}

.stories-feature-share {
    display: flex;
    gap: 8px;
}

.stories-feature-share a,
.story-share-row a {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid #ecd9bf;
    color: #8c2f2f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #fff;
}

.stories-feature-main-body h2 {
    display: -webkit-box;
}

.stories-feature-side {
    display: grid;
    gap: 8px;
    align-content: stretch;
    height: 400px;
}

.stories-side-card {
    display: grid;
    grid-template-columns: 104px 1fr;
    gap: 10px;
    padding: 7px;
    background: #fff;
    border: 1px solid #eadcc8;
    border-radius: 18px;
    box-shadow: 0 8px 18px rgba(92, 46, 9, 0.04);
    align-items: center;
    min-height: 0;
}

.stories-side-card img {
    width: 104px;
    height: 88px;
    object-fit: cover;
    border-radius: 14px;
}

.stories-side-card h3 {
    margin: 2px 0 5px;
    font-size: 0.96rem;
    line-height: 1.18;
    font-family: Georgia, "Times New Roman", serif;
}

.stories-side-card p {
    margin: 0;
    color: #8b8b8b;
    font-size: 0.84rem;
}

.stories-read-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: linear-gradient(120deg, #7f1d1d 0%, #b91c1c 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 18px rgba(140, 47, 47, 0.14);
}

.stories-read-btn:hover {
    color: #fff;
    filter: brightness(1.03);
    text-decoration: none;
}

.stories-feature-side .stories-side-card:nth-child(3) {
    display: none;
}

.stories-side-category {
    color: #8c2f2f;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.stories-grid-section--editorial,
.stories-social-section {
    max-width: 1240px;
    margin: 0 auto;
    padding: 42px 20px 0;
}

.stories-latest-section {
    width: 100%;
    background: linear-gradient(180deg, #faf6f0 0%, #f3ebe2 50%, #efe6db 100%);
    padding: 56px 0;
}

.stories-latest-head {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 20px;
    align-items: start;
}

.stories-latest-heading {
    position: sticky;
    top: 20px;
}

.stories-latest-head h2,
.stories-grid-header--editorial h2,
.stories-social-head h2 {
    margin: 10px 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.7rem;
}

.stories-latest-nav {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.stories-latest-nav button,
.stories-filter-btn {
    border: 1px solid #ead7bf;
    background: #fff;
    color: #7f2d2d;
    border-radius: 999px;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.stories-latest-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 31%);
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.stories-latest-track::-webkit-scrollbar {
    display: none;
}

.stories-latest-card {
    background: #fff;
    border: 1px solid #eadcc8;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 22px rgba(92, 46, 9, 0.05);
    scroll-snap-align: start;
}

.stories-latest-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.stories-latest-card-body {
    padding: 16px 18px 18px;
}

.stories-latest-card-body span {
    color: #8c2f2f;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.stories-latest-card-body h3 {
    margin: 10px 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.08rem;
    line-height: 1.25;
}

.stories-grid-header--editorial {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 16px;
    margin-bottom: 18px;
}

.stories-grid--editorial {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

/* Modern Premium Editorial Blog Grid Cards */
.story-card--editorial {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(140, 47, 47, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    border: 1px solid rgba(234, 215, 191, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card--editorial:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(140, 47, 47, 0.08), 0 2px 6px rgba(140, 47, 47, 0.02);
}

.story-card--editorial .story-card-media {
    position: relative;
    height: 220px;
    width: 100%;
    overflow: hidden;
}

.story-card--editorial .story-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-card--editorial:hover .story-card-media img {
    transform: scale(1.06);
}

.story-card--editorial .story-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #8c2f2f;
    color: #ffffff;
    padding: 5px 12px;
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(140, 47, 47, 0.2);
    z-index: 10;
}

.story-card--editorial .story-card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 24px;
}

.story-card-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 12px;
}

.story-card-author-date {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 75%;
}

.story-card-author-date .meta-dot {
    color: #c5a880;
}

.story-card-read-time {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #8c2f2f;
    font-weight: 600;
    flex-shrink: 0;
}

.story-card-title {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.35;
    margin: 0 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s ease;
}

.story-card--editorial:hover .story-card-title {
    color: #8c2f2f;
}

.story-card-description {
    font-size: 0.92rem;
    color: #4b5563;
    line-height: 1.5;
    margin: 0 0 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.story-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(234, 215, 191, 0.3);
}

.story-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #8c2f2f;
    border: 1px solid rgba(140, 47, 47, 0.2);
    background: #fdfbf7;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.story-card-btn:hover {
    background: #8c2f2f;
    color: #ffffff;
    border-color: #8c2f2f;
    box-shadow: 0 4px 12px rgba(140, 47, 47, 0.15);
}

.story-card-btn i {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.story-card-btn:hover i {
    transform: translateX(3px);
}

.story-card-footer .story-share-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 0;
}

.story-card-footer .story-share-row a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fdfbf7;
    color: #7f2d2d;
    font-size: 0.72rem;
    border: 1px solid rgba(140, 47, 47, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.story-card-footer .story-share-row a:hover {
    background: #8c2f2f;
    color: #ffffff;
    border-color: #8c2f2f;
    transform: translateY(-2px);
}

.stories-load-more-wrap {
    text-align: center;
    padding: 34px 0 0;
}

.stories-load-more--editorial {
    min-height: 48px;
    padding: 0 20px;
    border: 1px solid #d7c1a3;
    border-radius: 999px;
    background: #fff;
    color: #7f2d2d;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .stories-feature-hero {
        grid-template-columns: 1fr;
    }

    .stories-grid--editorial {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stories-latest-head {
        grid-template-columns: 1fr;
    }

    .stories-latest-track {
        grid-auto-columns: minmax(260px, 42%);
    }
}

@media (max-width: 640px) {
    .stories-hero--editorial {
        min-height: 250px;
        padding: 34px 16px;
    }

    .stories-search--editorial {
        grid-template-columns: 1fr 50px;
    }

    .stories-search--editorial input {
        height: 50px;
    }

    .stories-feature-main {
        grid-template-columns: 1fr;
    }

    .stories-feature-main-body {
        padding: 16px;
    }

    .stories-grid--editorial {
        grid-template-columns: 1fr;
    }

    .stories-grid-header--editorial,
    .stories-latest-heading {
        align-items: start;
        flex-direction: column;
    }

    .stories-latest-track {
        grid-auto-columns: minmax(250px, 82%);
    }
}

@media (max-width: 1200px) {
    .journey-steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .journey-steps-section {
        padding: 34px 0 50px;
    }

    .journey-steps-grid {
        grid-template-columns: 1fr;
        margin-top: 44px;
    }

    .journey-step-card {
        min-height: auto;
    }

    .journey-step-card h3 {
        font-size: 1.5rem;
    }

    .journey-steps-title {
        white-space: normal;
    }

    .journey-steps-cta {
        min-width: 290px;
        height: 56px;
        font-size: 1rem;
    }
}

/* WhatsApp Community Section */
.whatsapp-community-section {
    background: #efefef;
    padding: 26px 8px 60px;
}

.whatsapp-community-wrap {
    max-width: 1320px;
    margin: 0 auto;
    border-radius: 24px;
    border: 1px solid #ece2d5;
    background: linear-gradient(90deg, #eff0f2 0%, #eff0f2 50%, #f4e6d6 50%, #f4e6d6 100%);
    box-shadow: 0 14px 30px rgba(17, 24, 39, 0.08);
    padding: 46px 50px 40px;
    display: grid;
    grid-template-columns: 1.06fr 0.94fr;
    gap: 36px;
    align-items: center;
}

.whatsapp-community-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #a0a0a030;
    color: #b51536;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.whatsapp-community-chip i {
    font-size: 0.72rem;
}

.whatsapp-community-left h2 {
    margin: 20px 0 12px;
    color: #121a34;
    font-size: clamp(2.6rem, 5.5vw, 5rem);
    line-height: 0.93;
    font-weight: 900;
    letter-spacing: -0.02em;
    max-width: 700px;
}

.whatsapp-community-left h2 span {
    color: #b51536;
    display: block;
}

.whatsapp-ring-icon {
    display: block;
    margin-top: 4px;
    color: #b51536;
    font-size: 3rem;
}

.whatsapp-community-left p {
    margin: 0;
    color: #525f72;
    max-width: 540px;
    font-size: 1.05rem;
    line-height: 1.52;
}

.whatsapp-contact-row {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    border: 1px solid #dfe3ea;
    border-radius: 999px;
    background: #ebedf1;
    padding: 10px 14px;
}

.whatsapp-contact-row i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #67676724;
    color: #b51536;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.84rem;
}

.whatsapp-contact-row strong {
    color: #334155;
    font-size: 1.2rem;
}

.whatsapp-contact-row span {
    color: #22a34a;
    font-weight: 700;
    font-size: 1rem;
}

.whatsapp-cta-row {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.whatsapp-join-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 290px;
    height: 58px;
    border-radius: 999px;
    background: linear-gradient(90deg, #19aa5f 0%, #13b36e 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(20, 158, 86, 0.32);
}

.whatsapp-join-btn:hover {
    color: #ffffff;
    text-decoration: none;
}

.whatsapp-cta-row p {
    margin: 0;
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.35;
}

.whatsapp-cta-row strong {
    color: #243245;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.whatsapp-trust-points {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid #dfe3ea;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
}

.whatsapp-trust-points span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #4f5b6f;
    font-size: 1rem;
}

.whatsapp-trust-points i {
    color: #22a34a;
}

.whatsapp-community-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 620px;
}

.whatsapp-float-card {
    position: absolute;
    right: 24px;
    top: 110px;
    width: 185px;
    height: 290px;
    border-radius: 16px;
    background: #f4f5f7;
    border: 1px solid #e7eaf0;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.whatsapp-phone-frame {
    position: relative;
    z-index: 2;
    width: min(100%, 340px);
    border-radius: 44px;
    border: 6px solid #1f2a44;
    background: #d9d4cd;
    overflow: hidden;
    box-shadow: 0 20px 30px rgba(2, 6, 23, 0.22);
}

.whatsapp-phone-frame::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 4;
}

.whatsapp-phone-top {
    background: #066a5a;
    color: #eefcf7;
    display: grid;
    grid-template-columns: 20px 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 16px 14px 10px;
}

.whatsapp-phone-top > div strong {
    display: block;
    font-size: 0.84rem;
    line-height: 1;
}

.whatsapp-phone-top > div small {
    font-size: 0.66rem;
    opacity: 0.85;
}

.whatsapp-phone-top span {
    display: inline-flex;
    gap: 8px;
    font-size: 0.76rem;
}

.whatsapp-chat-feed {
    background: #d8d4cc;
    padding: 12px 10px 8px;
}

.whatsapp-profile-card {
    border: 2px solid #f9d7bb;
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
    margin: 8px 0 10px;
}

.whatsapp-profile-card img {
    width: 100%;
    height: 118px;
    object-fit: cover;
}

.whatsapp-profile-card div {
    padding: 8px 10px 4px;
}

.whatsapp-profile-card h4 {
    margin: 0;
    color: #253247;
    font-size: 0.8rem;
}

.whatsapp-profile-card p {
    margin: 2px 0 0;
    color: #6f7987;
    font-size: 0.68rem;
}

.whatsapp-profile-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 0 10px 9px;
}

.whatsapp-profile-actions button {
    border: 0;
    border-radius: 6px;
    height: 28px;
    font-size: 0.7rem;
    font-weight: 700;
    cursor: pointer;
}

.whatsapp-profile-actions button:first-child {
    background: #ffe9d2;
    color: #d77a1d;
}

.whatsapp-profile-actions button:last-child {
    background: #22c466;
    color: #ffffff;
}

.whatsapp-chat-msg {
    margin: 6px 0;
    font-size: 0.75rem !important;
    line-height: 1.4 !important;
    color: #4b5563 !important;
    background: #f1f3f5;
    padding: 10px 10px;
    border-radius: 8px;
}

.whatsapp-input-bar {
    border-top: 1px solid #e5e7eb;
    background: #f8fafb;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #9ca3af;
    font-size: 0.72rem;
}

.whatsapp-floating-btn {
    position: absolute;
    right: 36px;
    bottom: 38px;
    z-index: 3;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #22c466;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(34, 196, 102, 0.36);
    border: 6px solid #fff;
}

.whatsapp-floating-btn:hover {
    color: #fff;
    text-decoration: none;
}

@media (max-width: 1024px) {
    .whatsapp-community-wrap {
        grid-template-columns: 1fr;
        background: #eff0f2;
        gap: 24px;
        padding: 28px 22px;
    }

    .whatsapp-community-right {
        min-height: auto;
    }

    .whatsapp-float-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .whatsapp-community-section {
        padding: 16px 10px 44px;
    }

    .whatsapp-community-wrap {
        padding: 16px 12px 18px;
        border-radius: 18px;
        gap: 18px;
    }

    .whatsapp-community-left h2 {
        margin-top: 10px;
        font-size: clamp(2.05rem, 10.5vw, 3.2rem);
    }

    .whatsapp-community-left p {
        font-size: 0.94rem;
    }

    .whatsapp-contact-row {
        width: 100%;
        justify-content: center;
    }

    .whatsapp-contact-row strong {
        font-size: 1rem;
    }

    .whatsapp-join-btn {
        min-width: 0;
        width: 100%;
        height: 50px;
        font-size: 1rem;
    }

    .whatsapp-cta-row p {
        font-size: 0.9rem;
    }

    .whatsapp-phone-frame {
        width: min(100%, 290px);
    }

    .whatsapp-floating-btn {
        right: 14px;
        bottom: 10px;
        width: 54px;
        height: 54px;
        font-size: 1.45rem;
    }
}

/* Download App Section */
.download-app-section {
    background: #b51536;
    padding: 34px 16px 72px;
}

.download-app-wrap {
    max-width: 1260px;
    margin: 0 auto;
    background: #efefef;
    border-radius: 20px;
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.15);
    padding: 34px 34px 30px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 26px;
    align-items: center;
}

.download-app-device {
    width: min(100%, 350px);
    border-radius: 28px;
    border: 6px solid #0f1a39;
    background: linear-gradient(135deg, #86bbb4 0%, #9dd3cb 100%);
    padding: 28px 0;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.download-app-screen {
    width: 130px;
    height: 250px;
    border-radius: 28px;
    border: 4px solid #2a3349;
    overflow: hidden;
    box-shadow: 0 10px 18px rgba(2, 6, 23, 0.28);
}

.download-app-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.download-app-verified {
    position: absolute;
    right: -20px;
    top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 8px 10px;
    color: #1f2937;
    font-size: 0.74rem;
    font-weight: 700;
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.12);
}

.download-app-verified i {
    color: #16a34a;
}

.download-app-kicker {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #f07b15;
    font-size: 0.72rem;
    font-weight: 800;
}

.download-app-right h2 {
    margin: 10px 0 10px;
    color: #111827;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -0.02em;
    max-width: 820px;
}

.download-app-right h2 span {
    color: #ae1535;
}

.download-app-right p {
    margin: 0;
    max-width: 620px;
    color: #5b6676;
    font-size: 1.02rem;
    line-height: 1.68;
}

.download-app-actions {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.download-app-btn-primary,
.download-app-btn-secondary {
    height: 52px;
    min-width: 210px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 700;
}

.download-app-btn-primary {
    background: #b21536;
    color: #ffffff;
}

.download-app-btn-secondary {
    background: #0f1b3f;
    color: #ffffff;
}

.download-app-btn-primary:hover,
.download-app-btn-secondary:hover {
    color: #ffffff;
    text-decoration: none;
}

.download-app-points {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
}

.download-app-points span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #5f6876;
    font-size: 0.95rem;
    font-weight: 600;
}

.download-app-points i {
    color: #b11536;
}

@media (max-width: 1024px) {
    .download-app-wrap {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .download-app-section {
        padding: 18px 10px 44px;
    }

    .download-app-wrap {
        padding: 18px 14px 20px;
        border-radius: 16px;
        gap: 18px;
    }

    .download-app-device {
        width: min(100%, 290px);
        padding: 20px 0;
    }

    .download-app-screen {
        width: 106px;
        height: 210px;
    }

    .download-app-verified {
        right: -8px;
        top: 14px;
        font-size: 0.67rem;
        padding: 6px 8px;
    }

    .download-app-right h2 {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .download-app-right p {
        font-size: 0.95rem;
    }

    .download-app-btn-primary,
    .download-app-btn-secondary {
        width: 100%;
        min-width: 0;
        font-size: 1rem;
        height: 48px;
    }

    .download-app-points {
        gap: 10px 14px;
    }

    .download-app-points span {
        font-size: 0.88rem;
    }
}

/* Success Stories Section */
.success-stories-section {
    background: #efefef;
    padding: 30px 0 72px;
}

.success-stories-header {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.success-stories-chip {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 999px;
    background: #f7eadf;
    color: #ff2d55;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.success-stories-title {
    margin: 0;
    font-size: 2.25rem;
    line-height: 1.2;
    font-weight: 800;
    white-space: nowrap;
}

.success-stories-subtitle {
    margin: 12px auto 0;
    max-width: 600px;
    color: #697382;
    font-size: 0.95rem;
    line-height: 1.5;
}

.success-story-cards {
    max-width: 1240px;
    margin: 72px auto 0;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.success-story-card {
    background: #f3f3f3;
    border: 1px solid #e1e1e1;
    border-radius: 14px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    padding: 16px;
    min-height: 246px;
    position: relative;
    overflow: hidden;
}

.success-story-card::after {
    content: "";
    position: absolute;
    top: -36px;
    right: -36px;
    width: 96px;
    height: 96px;
    background: #efe7db;
    border-radius: 50%;
}

.success-story-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.success-story-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.success-story-top h3 {
    margin: 0;
    font-size: 0.95rem;
    color: #111827;
    font-weight: 700;
}

.success-story-top p {
    margin: 2px 0 0;
    font-size: 0.78rem;
    color: #6b7280;
}

.success-stars {
    color: #ff8a00;
    font-size: 0.95rem;
    margin: 2px 0 10px;
}

.success-stars i {
    margin-right: 2px;
}

.success-story-text {
    margin: 0 0 14px;
    color: #5f6876;
    font-size: 0.86rem;
    line-height: 1.5;
}

.success-story-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 34px;
    border: 1px solid #f2d8be;
    border-radius: 7px;
    color: #f18a00;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
}

.success-feedback-grid {
    max-width: 1240px;
    margin: 34px auto 0;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 26px;
    align-items: start;
}

.success-rating-panel strong {
    font-size: 3rem;
    line-height: 1;
    color: #111827;
}

.success-rating-score {
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

.success-rating-score span {
    color: #ff8a00;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.success-rating-score span i {
    margin-right: 1px;
}

.success-rating-label {
    margin: 4px 0;
    color: #8c95a3;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.success-rating-note {
    margin: 0 0 16px;
    color: #66707d;
    font-size: 0.78rem;
    max-width: 290px;
}

.success-bars {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 320px;
}

.success-bar-row {
    display: grid;
    grid-template-columns: 10px 1fr 30px;
    gap: 8px;
    align-items: center;
    font-size: 0.72rem;
    color: #6b7280;
}

.success-bar {
    height: 5px;
    border-radius: 999px;
    background: #d5d9df;
    overflow: hidden;
}

.success-bar b {
    display: block;
    height: 100%;
    background: #ff8a00;
}

.success-mini-reviews {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.success-mini-card {
    background: #eee6db;
    border-radius: 8px;
    border-left: 3px solid #ff2d55;
    padding: 12px;
}

.success-mini-head {
    display: flex;
    gap: 8px;
    align-items: center;
}

.success-mini-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #c4ccb9;
    flex-shrink: 0;
}

.success-mini-head h4 {
    margin: 0;
    font-size: 0.78rem;
    color: #111827;
}

.success-mini-head p {
    margin: 0;
    font-size: 0.65rem;
    color: #8a8f99;
}

.success-mini-card > p {
    margin: 8px 0 10px;
    font-size: 0.72rem;
    color: #565f6d;
    line-height: 1.45;
}

.success-mini-actions {
    display: flex;
    gap: 14px;
    font-size: 0.68rem;
    color: #6f7785;
}

.success-stories-footer {
    margin-top: 42px;
    text-align: center;
}

.success-stories-footer p {
    margin: 0 0 12px;
    color: #1f2937;
    font-size: 1.95rem;
    font-weight: 600;
}

.success-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    height: 42px;
    border-radius: 10px;
    background: #f80067;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
}

@media (max-width: 1100px) {
    .success-story-cards {
        grid-template-columns: 1fr;
    }

    .success-feedback-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .success-stories-title {
        white-space: normal;
    }

    .success-mini-reviews {
        grid-template-columns: 1fr;
    }

    .success-stories-footer p {
        font-size: 1.3rem;
    }
}

/* HSC Footer */
.hsc-footer {
    background: linear-gradient(90deg, #e23131 0%, #b91c1c 100%);
    color: #ffffff;
}

.hsc-footer-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 34px 24px 24px;
}

.hsc-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 1.4fr 1fr;
    gap: 36px;
}

.hsc-footer-title {
    margin: 0 0 10px;
    font-size: 1.6rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.hsc-footer-subtitle {
    margin: 0 0 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.hsc-footer-links,
.hsc-footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hsc-footer-links a,
.hsc-footer-contact li {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.04rem;
    line-height: 1.35;
}

.hsc-footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hsc-footer-links a:hover {
    color: #fff1df;
}

.hsc-footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hsc-footer-contact i {
    width: 18px;
    text-align: center;
}

.hsc-footer-note {
    margin: 6px 0 14px;
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.45;
}

.hsc-footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hsc-footer-socials a {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.95rem;
}

.hsc-footer-socials a:hover {
    background: rgba(255, 255, 255, 0.14);
}

.hsc-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    text-align: center;
    color: #ffe8d2;
    font-size: 0.92rem;
    padding: 10px 10px;
}

@media (max-width: 1200px) {
    .hsc-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .hsc-footer-inner {
        padding: 28px 16px 20px;
    }

    .hsc-footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hsc-footer-title {
        font-size: 1.45rem;
    }

    .hsc-footer-subtitle {
        font-size: 1.2rem;
    }

    .hsc-footer-links a,
    .hsc-footer-contact li,
    .hsc-footer-note {
        font-size: 1rem;
    }

    .hsc-footer-bottom {
        font-size: 0.9rem;
    }
}

/* About Elite Hero */
.about-elite-hero {
    position: relative;
    min-height: 760px;
    background-image: url('https://i.pinimg.com/736x/8e/ba/a1/8ebaa136ed5c2d73cfb393dfced84d03.jpg');
    background-size: cover;
    background-position: center 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 84px 24px 46px;
    overflow: hidden;
    margin-top: -50px;
}

.about-elite-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(33, 17, 8, 0.42);
}

.about-elite-card {
    position: relative;
    z-index: 1;
    width: min(980px, 100%);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(2px);
    text-align: center;
    padding: 64px 24px 58px;
    margin-top: -180px
}

.about-elite-title {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 5.2vw, 4.9rem);
    line-height: 1.05;
    font-weight: 400;
    color: #fff6ef;
}

.about-elite-script {
    margin: 4px 0 14px;
    font-family: "Great Vibes", cursive;
    font-size: clamp(2.1rem, 5vw, 5rem);
    line-height: 0.96;
    font-style: italic;
    color: #b51536;
}

.about-elite-description {
    margin: 0 auto;
    max-width: 640px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.12rem;
    line-height: 1.42;
}

.about-elite-actions {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.about-elite-btn {
    min-width: 268px;
    height: 56px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.08rem;
    font-weight: 700;
    padding: 0 18px;
}

.about-elite-btn-primary {
    background: #b51536;
    color: #ffffff;
}

.about-elite-btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
}

.about-elite-trust {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.92rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.about-elite-trust i {
    margin-right: 6px;
}

@media (max-width: 900px) {
    .about-elite-hero {
        min-height: 620px;
        background-position: center 14%;
        padding: 48px 14px 28px;
      

        
    }

    .about-elite-card {
        padding: 38px 16px 34px;
    }

    .about-elite-description {
        font-size: 1rem;
    }

    .about-elite-btn {
        min-width: 230px;
        height: 50px;
        font-size: 1rem;
    }

    .about-elite-trust {
        font-size: 0.9rem;
    }
}

/* About Mission */
.about-mission-section {
    background: #efefef;
    padding: 58px 0 70px;
}

.about-mission-header {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    padding: 0 16px;
}

.about-mission-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    background: #f5e4df;
    color: #ff6b4e;
    font-size: 0.68rem;
    letter-spacing: 0.09em;
    font-weight: 700;
}

.about-mission-title {
    margin: 14px 0 0;
    font-size: 2.25rem;
    line-height: 1.2;
    font-weight: 800;
}

.about-mission-subtitle {
    margin: 12px auto 0;
    max-width: 600px;
    font-size: 1.05rem;
    color: #5d6677;
    line-height: 1.45;
}

.about-mission-divider {
    display: block;
    width: 70px;
    height: 4px;
    border-radius: 999px;
    background: #f19164;
    margin: 22px auto 0;
}

.about-mission-row {
    max-width: 1220px;
    margin: 52px auto 0;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.about-mission-row-reverse {
    margin-top: 44px;
}

.about-mission-image-wrap {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
}

.about-mission-image {
    width: 100%;
    height: 410px;
    object-fit: cover;
    display: block;
}

.about-mission-copy {
    color: #19243d;
}

.about-mission-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: #f3e6e0;
    color: #ff7a57;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.about-mission-copy h3 {
    margin: 0 0 12px;
    font-size: clamp(1.75rem, 2.4vw, 2.8rem);
    line-height: 1.2;
    color: #1a233a;
}

.about-mission-copy p {
    margin: 0;
    color: #5e6778;
    font-size: 1rem;
    line-height: 1.65;
}

.about-mission-copy ul {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-mission-copy ul li {
    color: #3d4759;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-mission-copy ul li i {
    color: #ff7b58;
}

.about-mission-stats {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.about-mission-stats > div {
    background: #f2f2f2;
    border: 1px solid #e4e4e4;
    border-radius: 12px;
    padding: 14px 12px;
}

.about-mission-stats strong {
    display: block;
    color: #ff6b4e;
    font-size: 2rem;
    line-height: 1;
}

.about-mission-stats span {
    display: block;
    margin-top: 4px;
    color: #687186;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    font-weight: 700;
}

@media (max-width: 980px) {
    .about-mission-row {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .about-mission-row-reverse .about-mission-copy {
        order: 2;
    }

    .about-mission-row-reverse .about-mission-image-wrap {
        order: 1;
    }

    .about-mission-image {
        height: 320px;
    }
}

/* About Success Stories */
.about-success-section {
    background: #efefef;
    padding: 52px 0 46px;
}

.about-success-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    padding: 0 16px;
}

.about-success-chip {
    width: 120px;
    height: 12px;
    border-radius: 999px;
    background: #f3e1dc;
    display: block;
    margin: 0 auto 10px;
}

.about-success-header h2 {
    margin: 0;
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
}

.about-success-header p {
    margin: 10px auto 0;
    color: #626d7e;
    font-size: 0.98rem;
    font-style: italic;
    line-height: 1.42;
    max-width: 520px;
}

.about-success-slider {
    max-width: 1240px;
    margin: 40px auto 0;
    padding: 0 14px;
    position: relative;
}

.about-success-viewport {
    overflow: hidden;
}

.about-success-track {
    --about-success-gap: 22px;
    display: flex;
    gap: var(--about-success-gap);
    transition: transform 0.36s ease;
    will-change: transform;
}

.about-success-card {
    flex: 0 0 calc((100% - (var(--about-success-gap) * 3)) / 4);
    overflow: hidden;
        height: 550px;

    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(18, 22, 33, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-success-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(255, 114, 79, 0.16);
}

.about-success-photo {
    width: 100%;
    height: 330px;
    display: block;
    object-fit: cover;
    object-position: center 18%;
}

.about-success-body {
    padding: 14px 16px 16px;
    text-align: left;
}

.about-success-card h3 {
    margin: 0;
    color: #18243c;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
}

.about-success-card h4 {
    margin: 3px 0 8px;
    color: #b91c1c;
    font-size: 0.88rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.about-success-quote {
    margin: 0;
    color: #687287;
    font-size: 0.96rem;
    line-height: 1.55;
    font-style: italic;
    min-height: 130px;
}

.about-success-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid #f2ddd5;
    background: #fff7f4;
    color: #ff724f;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}

.about-success-arrow-left {
    left: -6px;
}

.about-success-arrow-right {
    right: -6px;
}

.about-success-arrow:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.about-success-dots {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.about-success-dots button {
    border: none;
    padding: 0;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #e4b3a5;
    cursor: pointer;
}

.about-success-dots button.active {
    background: #ff704d;
}

@media (max-width: 980px) {
    .about-success-track {
        --about-success-gap: 16px;
    }

    .about-success-card {
        flex-basis: calc((100% - var(--about-success-gap)) / 2);
    }

    .about-success-arrow {
        display: none;
    }
}

@media (max-width: 640px) {
    .about-success-card {
        flex-basis: 100%;
    }

    .about-success-photo {
        height: 280px;
    }

    .about-success-quote {
        min-height: 0;
    }
}

/* About Process */
.about-process-section {
    background: #efefef;
    padding: 56px 0 68px;
    text-align: center;
}

.about-process-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.about-process-chip {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: #f5dfd8;
    color: #ff7652;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}

.about-process-header h2 {
    margin: 0;
    font-size: 2.25rem;
    line-height: 1.2;
    font-weight: 800;
    white-space: nowrap;
}

.about-process-header p {
    margin: 18px auto 0;
    max-width: 980px;
    color: #515d74;
    font-size: 1.02rem;
    line-height: 1.45;
}

.about-process-divider {
    margin: 24px auto 0;
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.about-process-divider span {
    width: 68px;
    height: 2px;
    border-radius: 999px;
    background: #f19c84;
}

.about-process-divider i {
    color: #f19c84;
    font-size: 0.95rem;
}

.about-process-grid {
    max-width: 920px;
    margin: 46px auto 0;
    padding: 0 16px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.about-process-item {
    text-align: center;
}

.about-process-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #f4e2dd;
    color: #ff7652;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 12px;
}

.about-process-item h3 {
    margin: 0;
    color: #17233d;
    font-size: 1.45rem;
    font-weight: 700;
}

.about-process-item p {
    margin: 6px 0 0;
    color: #7b8494;
    font-size: 0.94rem;
}

.about-process-cta-wrap {
    margin-top: 42px;
    text-align: center;
}

.about-process-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 380px;
    height: 66px;
    border-radius: 999px;
        background: linear-gradient(90deg, #bd1e1e 0%, #ce2727 100%
100%
);
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 12px 26px rgba(255, 118, 84, 0.26);
}

.about-process-cta:hover {
    color: #ffffff;
    text-decoration: none;
}

.about-process-cta-wrap p {
    margin: 12px 0 0;
    color: #9ba3b1;
    font-size: 1.1rem;
}

@media (max-width: 900px) {
    .about-process-header h2 {
        white-space: normal;
    }

    .about-process-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .about-process-cta {
        min-width: 290px;
        height: 56px;
        font-size: 1.05rem;
    }
}

/* About Communities Marquee */
.about-communities-section {
    background: linear-gradient(90deg, #bb1d1d 0%, #db2d2d 100%);
    padding: 22px 0 28px;
    overflow: hidden;
}

.about-communities-section h2 {
    margin: 0;
    text-align: center;
    color: #ffffff;
    font-size: clamp(1.2rem, 2vw, 2rem);
    font-weight: 800;
    letter-spacing: 0.05em;
}

.about-communities-marquee {
    margin-top: 14px;
    overflow: hidden;
    width: 100%;
}

.about-communities-track {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding-left: 18px;
    white-space: nowrap;
    animation: about-communities-scroll 22s linear infinite;
}

.about-community-pill {
    min-width: 118px;
    height: 46px;
    padding: 0 24px;
    border-radius: 999px;
    background: #ffffff;
    border: 8px solid rgba(255, 255, 255, 0.35);
    color: #f61866;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 500;
}

@keyframes about-communities-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .about-community-pill {
        min-width: 96px;
        height: 40px;
        font-size: 0.95rem;
        border-width: 6px;
    }
}

/* Contact Modern */
.contact-modern-section {
    background: #efefef;
    padding: 46px 0 70px;
}

.contact-modern-wrap {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 18px;
}

.contact-modern-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}

.contact-modern-header h1 {
    margin: 0;
    font-size: clamp(2.1rem, 5vw, 4.2rem);
    line-height: 1.04;
    color: #1d1717;
    font-weight: 800;
}

.contact-modern-header h1 span {
        color: #b51536;

}

.contact-modern-header p {
    margin: 14px auto 0;
    max-width: 560px;
    color: #7b7880;
    font-size: 0.93rem;
    line-height: 1.5;
}

.contact-modern-cards {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.contact-modern-card {
    border: 1px solid #e7ddd6;
    background: #f4f0ec;
    border-radius: 8px;
    padding: 14px 14px 12px;
}

.contact-modern-icon {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: #ffe6d9;
    color: #ff8f4c;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    font-size: 0.75rem;
}

.contact-modern-card h3 {
    margin: 0;
    color: #222026;
    font-size: 0.95rem;
    font-weight: 700;
}

.contact-modern-card p {
    margin: 5px 0 0;
    color: #55515b;
    font-size: 0.75rem;
}

.contact-modern-card small {
    display: block;
    margin-top: 7px;
    color: #b18b6f;
    font-size: 0.64rem;
}

.contact-modern-grid {
    margin-top: 34px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
}

.contact-modern-left h2 {
    margin: 0;
    color: #1e1f23;
    font-size: 1.85rem;
    font-weight: 700;
}

.contact-modern-left > p {
    margin: 6px 0 14px;
    color: #6b6a72;
    font-size: 0.76rem;
}

.contact-modern-success {
    margin-bottom: 10px;
    border: 1px solid #86cc9a;
    background: #eaf9ef;
    color: #2f7b42;
    border-radius: 6px;
    padding: 8px 10px;
    font-size: 0.8rem;
}

.contact-modern-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-modern-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.contact-modern-form label {
    display: block;
    margin-bottom: 4px;
    color: #2b3038;
    font-size: 0.66rem;
    font-weight: 700;
}

.contact-modern-form input,
.contact-modern-form select,
.contact-modern-form textarea {
    width: 100%;
    border: 1px solid #d9d9dd;
    background: #f4f4f5;
    border-radius: 4px;
    padding: 8px 10px;
    color: #2d3239;
    font-size: 0.78rem;
}

.contact-modern-form textarea {
    min-height: 95px;
    resize: vertical;
}

.contact-modern-error {
    color: #c83a3a;
    font-size: 0.7rem;
}

.contact-modern-submit {
    margin-top: 2px;
    height: 38px;
    border: none;
    border-radius: 4px;
    background: linear-gradient(90deg, #d4a227 0%, #f19b34 100%);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
}

.contact-modern-right h3 {
    margin: 0 0 10px;
    color: #1f1f24;
    font-size: 1.1rem;
}

.contact-modern-right h3 i {
    color: #ff9f38;
    margin-right: 4px;
}

.contact-modern-faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-modern-faq-list button {
    height: 38px;
    border: 1px solid #dddce1;
    background: #f7f7f8;
    border-radius: 8px;
    color: #3f4450;
    font-size: 0.78rem;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact-modern-faq-list button i {
    color: #f08f36;
}

.contact-modern-commitment {
    margin-top: 14px;
    border: 1px solid #dfd8d1;
    border-radius: 12px;
    background: #f2eeea;
    padding: 12px 14px;
}

.contact-modern-commitment h4 {
    margin: 0;
    text-align: center;
    font-size: 0.95rem;
    color: #2a2a2e;
}

.contact-modern-commitment-grid {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    text-align: center;
}

.contact-modern-commitment-grid span {
    font-size: 0.58rem;
    color: #4d5059;
    line-height: 1.3;
    font-weight: 700;
}

.contact-modern-commitment-grid i {
    display: block;
    margin-bottom: 4px;
    color: #ff9e3b;
    font-size: 0.8rem;
}

.contact-modern-help {
    margin-top: 12px;
    border-radius: 10px;
    padding: 16px 14px;
    background: radial-gradient(circle at 100% 0%, rgba(255, 114, 83, 0.15), transparent 45%), #2a1a10;
    color: #f4e5db;
    border: 1px solid rgba(255, 143, 87, 0.25);
}

.contact-modern-help h4 {
    margin: 0;
    font-size: 0.95rem;
}

.contact-modern-help p {
    margin: 4px 0 10px;
    font-size: 0.68rem;
    color: #cebeb1;
}

.contact-modern-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 30px;
    padding: 0 12px;
    border-radius: 5px;
    background: #20be5a;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.74rem;
    font-weight: 700;
}

.contact-modern-whatsapp:hover {
    color: #ffffff;
    text-decoration: none;
}

@media (max-width: 980px) {
    .contact-modern-cards {
        grid-template-columns: 1fr;
    }

    .contact-modern-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .contact-modern-row {
        grid-template-columns: 1fr;
    }

    .contact-modern-header h1 {
        font-size: 2rem;
    }
}

/* Global Responsive Hardening: Home + About + Contact */
@media (max-width: 1200px) {
    .family-trust-content {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .family-trust-point-col-right {
        padding-top: 0;
    }

    .journey-steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .success-story-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .family-trust-title,
    .journey-steps-title,
    .success-stories-title,
    .blog-preview-title,
    .about-process-header h2 {
        white-space: normal;
    }

    .family-trust-header,
    .journey-steps-header,
    .success-stories-header,
    .blog-preview-header,
    .about-process-header {
        max-width: 92%;
       
    }

    .about-elite-hero {
        min-height: 620px;
        padding: 48px 16px 30px;
        background-position: center 14%;

    
    }

    .about-elite-card {
        width: 100%;
        padding: 36px 16px 30px;
    }

    .about-mission-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-mission-row-reverse .about-mission-copy {
        order: 2;
    }

    .about-mission-row-reverse .about-mission-image-wrap {
        order: 1;
    }

    .about-success-card h3 {
        font-size: 1.65rem;
    }

    .about-success-photo {
        height: 290px;
    }

    .contact-modern-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .family-trust-section,
    .journey-steps-section,
    .success-stories-section,
    .blog-preview-section,
    .about-mission-section,
    .about-success-section,
    .about-process-section,
    .contact-modern-section {
        padding-left: 0;
        padding-right: 0;
    }

    .family-trust-title,
    .journey-steps-title,
    .success-stories-title,
    .blog-preview-title,
    .about-mission-title,
    .about-success-header h2,
    .about-process-header h2 {
        font-size: 1.75rem;
        line-height: 1.22;
    }

    .family-trust-subtitle,
    .journey-steps-subtitle,
    .success-stories-subtitle,
    .blog-preview-copy p,
    .about-mission-subtitle,
    .about-success-header p,
    .about-process-header p {
        font-size: 0.95rem;
    }

    .journey-steps-grid,
    .success-story-cards {
        grid-template-columns: 1fr;
        padding: 0 14px;
    }

    .journey-step-card h3 {
        font-size: 1.2rem;
    }

    .journey-steps-cta,
    .about-process-cta {
        min-width: 250px;
        width: calc(100% - 28px);
        max-width: 360px;
        font-size: 1rem;
        height: 52px;
    }

    .about-success-slider {
        padding: 0 12px;
    }

    .about-success-photo {
        height: 260px;
    }

    .about-success-body {
        padding: 12px 12px 14px;
    }

    .about-success-card h3 {
        font-size: 1.35rem;
    }

    .about-success-card h4 {
        font-size: 0.8rem;
    }

    .about-success-quote {
        font-size: 0.9rem;
        min-height: 0;
    }

    .about-community-pill {
        min-width: 96px;
        height: 38px;
        padding: 0 14px;
        font-size: 0.95rem;
        border-width: 5px;
    }

    .contact-modern-wrap {
        padding: 0 12px;
    }

    .contact-modern-header h1 {
        font-size: 2rem;
    }

    .contact-modern-cards {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .contact-modern-card h3 {
        font-size: 1rem;
    }

    .contact-modern-card p,
    .contact-modern-card small,
    .contact-modern-left > p,
    .contact-modern-faq-list button {
        font-size: 0.82rem;
    }

    .contact-modern-left h2 {
        font-size: 1.35rem;
    }

    .contact-modern-row {
        grid-template-columns: 1fr;
    }

    .contact-modern-form label {
        font-size: 0.78rem;
    }

    .contact-modern-form input,
    .contact-modern-form select,
    .contact-modern-form textarea {
        font-size: 0.9rem;
        padding: 10px 11px;
    }

    .contact-modern-submit {
        height: 42px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        left: 16px;
        right: 16px;
    }

    .navbar .text-xl {
        max-width: 108px;
        font-size: 0.78rem;
    }

    .navbar-mobile-login {
        font-size: 0.82rem;
    }

    .navbar-mobile-actions {
        gap: 5px;
        transform: none;
    }

    .navbar-mobile-menu-btn {
        width: 28px;
        height: 28px;
        font-size: 0.92rem;
    }

    .home-profiles-heading {
        font-size: 1.85rem !important;
        line-height: 1.1 !important;
        white-space: normal;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-section {
        padding-top: 24px;
    }

    .hero-inner {
        margin: 0 auto;
        max-width: 460px;
        padding-top: 10px;
    }

    .hero-left {
        margin: 0 auto;
    }

    .hero-right,
    .hero-circle-frame,
    .hero-bg-shape {
        display: none !important;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.14;
    }

    .hero-title-break {
        display: block;
        white-space: nowrap;
    }

    .hero-action-row {
        display: grid;
        grid-template-columns: auto 1fr;
        align-items: center;
        column-gap: 10px;
        row-gap: 10px;
    }

    .hero-cta {
        grid-column: 1;
        margin: 0;
    }

    .hero-avatars {
        grid-column: 2;
        margin: 0;
        justify-self: start;
    }

    .trust-indicators {
        grid-column: 1 / -1;
        width: 100%;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 14px;
    }

    .trust-item {
        font-size: 0.9rem;
    }

    .family-trust-point-number {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .family-trust-point-copy h3 {
        font-size: 1rem;
    }

    .journey-step-number {
        width: 38px;
        height: 38px;
        font-size: 1.35rem;
    }

    .journey-step-icon {
        width: 58px;
        height: 58px;
    }

    .hsc-footer-inner {
        padding: 22px 12px 14px;
    }

    .hsc-footer-title {
        font-size: 1.2rem;
    }

    .hsc-footer-links a,
    .hsc-footer-contact li,
    .hsc-footer-note {
        font-size: 0.92rem;
    }
}

.about-stats-compact {
    padding: 12px 0;
    background: transparent;
}

.about-stats-compact .grid {
    gap: 10px;
}

.about-stats-compact .text-4xl {
    font-size: 1.9rem;
    line-height: 1.1;
    margin-bottom: 2px;
}

.about-stats-compact .text-white,
.about-stats-compact .text-white\/90 {
    color: rgba(255, 255, 255, 0.28) !important;
}

.about-profiles-section {
    background: linear-gradient(90deg, #f60067 0%, #ff8b00 100%);
    padding: 10px 0 24px;
    overflow: hidden;
}

.about-profiles-section h2 {
    margin: 0;
    text-align: center;
    color: #ffffff;
    font-size: clamp(1rem, 1.6vw, 1.45rem);
    font-weight: 800;
    letter-spacing: 0.06em;
}

.about-profiles-marquee {
    margin-top: 12px;
    overflow: hidden;
}

.about-profiles-track {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding-left: 18px;
    white-space: nowrap;
    animation: about-profiles-scroll 24s linear infinite;
}

@keyframes about-profiles-scroll {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}
.policy-page-simple h2 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #111;
    font-weight: 700;
}

/* Red headings */
.policy-page-simple h2.red-heading {
    color: #dc2626;
}

.red-heading-inline{
    color:#dc2626;
    color:#111;
    font-weight:700;
    font-size:20px;
}
.restriction-red{
    color:#dc2626;
    font-weight:700;
}
/* ===== MATRIMONY SHOWCASE SLIDER ===== */
.matrimony-showcase-section {
    padding: 72px 0 56px;
    background: #fdf6f8;
}

.matrimony-showcase-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.matrimony-showcase-header {
    text-align: center;
    margin-bottom: 40px;
}

.matrimony-showcase-title {
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.matrimony-showcase-sub {
    font-size: 15px;
    color: #6b7280;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Slider wrapper */
.matrimony-slider-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.matrimony-viewport {
    flex: 1;
    overflow: hidden;
}

.matrimony-track {
    display: flex;
    gap: 18px;
    transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
}

/* Card wrapper — 4 per view desktop, 2 tablet, 1 mobile */
.matrimony-card-wrap {
    flex: 0 0 calc(25% - 14px);
    min-width: 0;
}

@media (max-width: 1024px) {
    .matrimony-card-wrap { flex: 0 0 calc(50% - 9px); }
}

@media (max-width: 640px) {
    .matrimony-card-wrap { flex: 0 0 100%; }
}

/* Card */
.matrimony-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f0e6ea;
    transition: transform 0.28s ease;
    cursor: pointer;
}

.matrimony-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(212, 20, 90, 0.10);
}

/* Image area */
.matrimony-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #ffe0ec, #ffdab9);
}

.matrimony-card-img img {
    width: 100%;
    height: 100%;
    object-fit: inherit;
    display: block;
    transition: transform 0.4s ease;
}

.matrimony-card:hover .matrimony-card-img img {
    transform: scale(1.05);
}

/* Premium ribbon */
.matrimony-ribbon {
    position: absolute;
    top: 12px;
    left: 0;
    background: linear-gradient(90deg, #d4145a, #fbb03b);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 12px 3px 8px;
    border-radius: 0 20px 20px 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Match % bottom right */
.matrimony-match-pct {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.55));
    color: #fff;
    font-size: 11.5px;
    font-weight: 500;
    padding: 22px 12px 8px;
    text-align: right;
}

/* Card body */
.matrimony-card-body {
    padding: 14px 16px 16px;
}

.matrimony-card-name-row {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 2px;
}

.matrimony-card-name {
    font-size: 15.5px;
    font-weight: 600;
    color: #1a1a2e;
    font-family: 'Playfair Display', serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Blue verified tick */
.matrimony-verified {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
}

.matrimony-card-age {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 8px;
}

/* Gotra/community pill */
.matrimony-gotra-pill {
    display: inline-block;
    background: #fff0f5;
    color: #c9184a;
    font-size: 10.5px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid #f9a8c9;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

/* Location */
.matrimony-card-location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 12px;
}

.matrimony-card-location i {
    color: #d4145a;
    font-size: 11px;
}

/* Action buttons */
.matrimony-card-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.matrimony-btn-interest {
    flex: 1;
    background: linear-gradient(90deg, #d4145a, #e83368);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 10px;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
    letter-spacing: 0.2px;
}

.matrimony-btn-interest:hover {
    opacity: 0.88;
    transform: scale(0.98);
}

.matrimony-btn-save {
    width: 34px;
    height: 34px;
    border: 1px solid #e5e7eb;
    background: #fafafa;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 14px;
    flex-shrink: 0;
    transition: all 0.2s;
}

.matrimony-btn-save:hover {
    background: #fff0f5;
    border-color: #f9a8c9;
    color: #d4145a;
}

.matrimony-btn-save.liked {
    color: #d4145a;
    background: #fff0f5;
    border-color: #f9a8c9;
}

/* Nav arrows */
.matrimony-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid #e5e7eb;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 15px;
    flex-shrink: 0;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.matrimony-nav-btn:hover {
    background: #d4145a;
    border-color: #d4145a;
    color: #fff;
    box-shadow: 0 4px 16px rgba(212,20,90,0.25);
}

.matrimony-nav-btn:active {
    transform: scale(0.93);
}

/* Dots */
.matrimony-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.matrimony-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: #e5e7eb;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s;
}

.matrimony-dots button.active {
    background: #d4145a;
    width: 22px;
    border-radius: 4px;
}
/* ===== END MATRIMONY SHOWCASE ===== */

/* ===== BLOG PREVIEW SECTION ===== */
.blog-preview-section {
    padding: 84px 20px;
    background: linear-gradient(180deg, #fff7fa 0%, #ffffff 100%);
}

.blog-preview-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.blog-preview-header {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 48px;
    padding: 0 16px;
}

.blog-preview-copy {
    max-width: 860px;
    margin: 0 auto;
}

.blog-preview-chip {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 999px;
    background: #fff0f5;
    color: #ff2d55;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.blog-preview-title {
    margin: 0;
    font-size: 2.25rem;
    line-height: 1.2;
    font-weight: 800;
    color: #111827;
    white-space: nowrap;
}

.blog-preview-copy p {
    color: #697382;
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 600px;
    margin: 14px auto 0;
}

.blog-preview-footer-btn,
.blog-preview-read-more {
    text-decoration: none;
}

.blog-preview-footer-btn:hover,
.blog-preview-read-more:hover,
.blog-preview-nav:hover {
    transform: translateY(-2px);
}

.blog-preview-slider {
    display: flex;
    align-items: center;
    gap: 14px;
}

.blog-preview-viewport {
    overflow: hidden;
    flex: 1;
}

.blog-preview-track {
    display: flex;
    gap: 16px;
    transition: transform 0.35s ease;
    touch-action: pan-y;
}

.blog-preview-card {
    flex: 0 0 calc((100% - 32px) / 3);
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(17, 24, 39, 0.07);
    border: 1px solid rgba(229, 231, 235, 0.75);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-preview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(17, 24, 39, 0.1);
}

.blog-preview-image-wrap {
    position: relative;
    aspect-ratio: 1.85 / 1;
    overflow: hidden;
}

.blog-preview-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-preview-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(17, 24, 39, 0.18) 100%);
}

.blog-preview-badge {
    position: absolute;
    left: 14px;
    top: 14px;
    z-index: 1;
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: #be123c;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(17, 24, 39, 0.1);
}

.blog-preview-body {
    padding: 14px 16px 14px;
}

.blog-preview-body h3 {
    font-size: 16px;
    line-height: 1.3;
    color: #111827;
    margin-bottom: 6px;
    font-weight: 700;
}

.blog-preview-body p {
    color: #6b7280;
    font-size: 12.5px;
    line-height: 1.5;
    min-height: 38px;
    margin-bottom: 10px;
}

.blog-preview-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 10px;
    color: #9ca3af;
    font-size: 11.5px;
    margin-bottom: 10px;
}

.blog-preview-meta span + span {
    position: relative;
}

.blog-preview-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 700;
    color: #d4145a;
}

.blog-preview-nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #6b7280;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(17, 24, 39, 0.08);
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.blog-preview-nav:hover {
    background: #d4145a;
    border-color: #d4145a;
    color: #fff;
    box-shadow: 0 10px 20px rgba(212, 20, 90, 0.22);
}

.blog-preview-footer {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
}

.blog-preview-footer p {
    color: #4b5563;
    font-size: 15px;
}

.blog-preview-footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    background: #111827;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.16);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (max-width: 1024px) {
    .blog-preview-card {
        flex-basis: calc((100% - 16px) / 2);
    }
}

@media (max-width: 767px) {
    .blog-preview-section {
        padding: 64px 16px;
    }

    .blog-preview-slider {
        gap: 10px;
    }

    .blog-preview-card {
        flex-basis: 100%;
    }

    .blog-preview-nav {
        width: 40px;
        height: 40px;
    }
}
/* ===== END BLOG PREVIEW SECTION ===== */

/* ===== BLOG FILTER DROPDOWN ===== */
.stories-filter-container {
    position: relative;
    display: inline-block;
}

.stories-filter-panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 330px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(140, 47, 47, 0.08), 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(234, 215, 191, 0.7);
    padding: 20px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                visibility 0.3s;
}

.stories-filter-panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.filter-icon {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.filter-icon.is-active {
    transform: rotate(90deg);
}

.filter-panel-section {
    margin-bottom: 16px;
}

.filter-panel-section:last-of-type {
    margin-bottom: 0;
}

.filter-panel-section h4 {
    font-size: 0.8rem;
    font-weight: 700;
    color: #8c2f2f;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 10px;
}

.filter-options-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-option {
    position: relative;
    cursor: pointer;
}

.filter-option input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.filter-option span {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 30px;
    background: #fdfbf7;
    color: #4b5563;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(234, 215, 191, 0.6);
    transition: all 0.25s ease;
    user-select: none;
}

.filter-option input:checked + span {
    background: #8c2f2f;
    color: #ffffff;
    border-color: #8c2f2f;
    box-shadow: 0 4px 10px rgba(140, 47, 47, 0.15);
}

.filter-option span:hover {
    border-color: #8c2f2f;
}

.filter-panel-footer {
    display: flex;
    justify-content: flex-end;
    padding-top: 14px;
    border-top: 1px solid rgba(234, 215, 191, 0.3);
    margin-top: 14px;
}

.filter-clear-btn {
    background: none;
    border: none;
    color: #8c2f2f;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    padding: 4px 8px;
    transition: opacity 0.2s ease;
}

.filter-clear-btn:hover {
    text-decoration: underline;
    opacity: 0.8;
}

.filter-count-badge {
    background: #8c2f2f;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    margin-right: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 16px;
    height: 16px;
}

/* Empty State */
.stories-no-results {
    text-align: center;
    padding: 60px 20px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(234, 215, 191, 0.4);
    box-shadow: 0 10px 30px rgba(140, 47, 47, 0.02);
    max-width: 500px;
    margin: 40px auto;
}

.no-results-icon {
    font-size: 3rem;
    color: #c5a880;
    margin-bottom: 20px;
}

.stories-no-results h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.4rem;
    color: #1f2937;
    margin: 0 0 10px;
}

.stories-no-results p {
    font-size: 0.92rem;
    color: #6b7280;
    margin: 0 0 24px;
    line-height: 1.5;
}

.filter-reset-btn {
    background: #8c2f2f;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-reset-btn:hover {
    background: #7f1d1d;
    box-shadow: 0 4px 12px rgba(140, 47, 47, 0.2);
}

@media (max-width: 480px) {
    .stories-filter-panel {
        width: calc(100vw - 40px);
        right: -10px;
    }
}

/* Card Fade-In Animation */
@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-card {
    animation: cardFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Permanently hide promotional popup - Keep all backend logic intact */
.app-promo-overlay.is-open {
    display: none !important;
    pointer-events: none !important;
}
