/* ==========================================================================
   Design Tokens & CSS Variables
   ========================================================================== */
:root {
    /* Brand Colors */
    --primary-color: #c01c3f;
    /* The Paird red/pink branding color */
    --primary-hover: #a31432;
    --primary-light: #fef0f2;
    --accent-heart: #ff3b5c;
    /* Vivid heart red */

    /* Text Colors */
    --text-dark: #1f273d;
    /* Deep navy-blue/black for titles */
    --text-muted: #5e6678;
    /* Subtle gray for descriptions */
    --text-light: #ffffff;

    /* Icon Themes */
    --color-verified: #df4759;
    /* Feature red/pink */
    --color-secure: #3b82f6;
    /* Shield blue */
    --color-matching: #22c55e;
    /* Matching green */

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(192, 28, 63, 0.04);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 40px rgba(192, 28, 63, 0.08);
    --shadow-icon-red: 0 8px 24px rgba(223, 71, 89, 0.15);
    --shadow-icon-blue: 0 8px 24px rgba(59, 130, 246, 0.15);
    --shadow-icon-green: 0 8px 24px rgba(34, 197, 94, 0.15);

    /* Layout */
    --container-width: 1200px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-full: 9999px;

    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: #ffffff;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1 0 auto;
}

.footer {
    margin-top: auto;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
    padding: 16px 0 24px 0;
}

.bottom-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: #5e6678;
}

.copyright-text .highlight {
    color: #c01c3f;
    /* var(--primary-color) */
    font-weight: 700;
}

.bottom-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bottom-links a {
    color: #5e6678;
    transition: color 0.2s ease;
}

.bottom-links a:hover {
    color: #c01c3f;
}

.link-separator {
    color: #f1f5f9;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 0;
}

/* Top Bar */
.top-bar {
    background-color: #9c1524;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
}

.top-bar-left,
.top-bar-right,
.top-contact,
.top-social {
    display: flex;
    align-items: center;
    height: 100%;
}

.top-bar-left {
    gap: 0;
}

.top-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 0 16px;
    height: 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.top-link {
    display: flex;
    align-items: center;
    color: #fff;
    padding: 0 16px;
    height: 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    letter-spacing: 0.5px;
}

.top-link:hover,
.top-search-btn:hover,
.social-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-contact {
    gap: 24px;
    padding-right: 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    height: 100%;
}

.top-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
    height: 100%;
}

.top-social {
    display: flex;
    height: 40px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 0 16px;
    height: 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.social-link:last-child {
    border-right: none;
}

.navbar-wrapper {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 70px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* Special Desktop Hamburger Button styling matching mockup */
.menu-trigger-desktop {
    display: none;
    /* Hidden on desktop — drawer uses #menu-btn in mobile nav-actions */
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-full);
    background-color: #d80011;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-shadow: 0 4px 12px rgba(216, 0, 17, 0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.menu-trigger-desktop:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 16px rgba(216, 0, 17, 0.5);
}

.menu-trigger-desktop:active {
    transform: scale(0.98);
}

.menu-trigger-desktop .hamburger-bar {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #ffffff;
    margin: 0;
    transition: var(--transition-smooth);
    border-radius: 2px;
}

/* Logo Styling matching mockup */
.logo {
    display: flex;
    flex-direction: column;
}

.logo-link {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.1;
    letter-spacing: -1.5px;
    display: flex;
    align-items: center;
}

.logo-text span {
    position: relative;
}

/* Replicate heart on 'd' or 'i' */
.logo-text span::after {
    content: '';
    position: absolute;
    top: -2px;
    right: 4px;
    width: 6px;
    height: 6px;
    background-color: var(--accent-heart);
    transform: rotate(45deg);
    border-radius: 1px;
}

.logo-tagline {
    font-size: 9px;
    text-transform: lowercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: -3px;
    margin-left: 2px;
}

/* Desktop Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-item {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    position: relative;
    padding: 6px 0;
}

.nav-item:hover,
.nav-item.active {
    color: var(--primary-color);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-smooth);
}

.nav-item:hover::after,
.nav-item.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Profile Avatar button matching mockup */
.profile-avatar-btn {
    width: 58px;
    height: 58px;
    border-radius: var(--border-radius-full);
    background-color: #e9ebed;
    /* Light gray background */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    color: #4a5568;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.profile-avatar-btn:hover {
    background-color: #dfe2e6;
    color: var(--primary-color);
    transform: translateY(-1px);
}

.profile-svg {
    margin-bottom: -1px;
}

.profile-btn-lbl {
    font-family: var(--font-heading);
    font-size: 8px;
    font-weight: 800;
    text-transform: lowercase;
    letter-spacing: 0.2px;
    opacity: 0.8;
}

.icon-btn {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-full);
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.icon-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(192, 28, 63, 0.1);
    color: var(--primary-color);
}

.icon-btn:active {
    transform: translateY(0);
}

/* Mobile-only toggle defaults */
.mobile-only-btn {
    display: none;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 120px;
    display: flex;
    align-items: center;
    background-color: #fff4f1;
    /* Warm cream/peach default */
    overflow: hidden;
}

/* Hero Background and Overlay blending */
.hero-background-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right top;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            #fff4f1 0%,
            rgba(255, 244, 241, 0.98) 35%,
            rgba(255, 244, 241, 0.8) 50%,
            rgba(255, 244, 241, 0.1) 75%,
            transparent 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    max-width: 540px;
}

/* Hero badge */
.badge-wrapper {
    margin-bottom: 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    padding: 8px 18px;
    border-radius: var(--border-radius-full);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid rgba(192, 28, 63, 0.08);
}

.hero-badge svg {
    fill: var(--primary-color);
}

/* Hero Titles */
.hero-title {
    font-family: var(--font-heading);
    font-size: 58px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.hero-title .highlight {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 36px;
    font-weight: 400;
}

/* Hero Call to Action Buttons */
.hero-cta-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192, 28, 63, 0.3);
}

.btn-secondary {
    background-color: #ffffff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192, 28, 63, 0.1);
}

.btn-icon {
    transition: var(--transition-smooth);
}

.btn:hover .btn-icon {
    transform: translateX(2px);
}

/* Hero Bottom features bar */
.hero-features-bar {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius-md);
    padding: 12px 24px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    max-width: fit-content;
    box-shadow: var(--shadow-sm);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

.feature-icon {
    color: var(--primary-color);
}

.feature-divider {
    width: 1px;
    height: 16px;
    background-color: rgba(0, 0, 0, 0.1);
    margin: 0 16px;
}

/* Curved Bottom Wave & Heart Badge */
.bottom-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 10;
    display: flex;
    justify-content: center;
}

.bottom-wave svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.wave-heart-badge {
    position: absolute;
    bottom: 38px;
    background-color: #ffffff;
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(192, 28, 63, 0.15);
    border: 1px solid rgba(192, 28, 63, 0.05);
    animation: pulse 2s infinite;
}

.wave-heart-badge svg {
    position: static;
    fill: var(--accent-heart);
    width: 22px;
    height: 22px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(192, 28, 63, 0.15);
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 4px 25px rgba(192, 28, 63, 0.3);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(192, 28, 63, 0.15);
    }
}

/* ==========================================================================
   Why Choose Section
   ========================================================================== */
.why-choose-section {
    padding: 120px 0 40px 0;
    background-color: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.section-title .highlight {
    color: var(--primary-color);
}

.section-deco-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.section-deco-line::before,
.section-deco-line::after {
    content: '';
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.deco-text {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 400;
}

.deco-arrow {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-top: 1.5px solid var(--primary-color);
    border-right: 1.5px solid var(--primary-color);
}

.deco-arrow.left {
    transform: rotate(-135deg);
}

.deco-arrow.right {
    transform: rotate(45deg);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background-color: #ffffff;
    border-radius: var(--border-radius-lg);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(192, 28, 63, 0.05);
}

/* Card Icons */
.card-icon-wrapper {
    margin-bottom: 28px;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition-smooth);
}

/* Themes per card */
.verified-pink .icon-circle {
    background-color: #fdf2f4;
    color: var(--color-verified);
    box-shadow: var(--shadow-icon-red);
}

.secure-blue .icon-circle {
    background-color: #eff6ff;
    color: var(--color-secure);
    box-shadow: var(--shadow-icon-blue);
}

.matching-green .icon-circle {
    background-color: #f0fdf4;
    color: var(--color-matching);
    box-shadow: var(--shadow-icon-green);
}

/* Icon hover spin / scale */
.feature-card:hover .icon-circle {
    transform: scale(1.1);
}

.mini-heart {
    position: absolute;
    bottom: 12px;
    right: 12px;
    color: var(--accent-heart);
    background: #ffffff;
    border-radius: 50%;
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Card Titles */
.card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

/* Highlight line inside cards */
.card-line {
    width: 32px;
    height: 3px;
    border-radius: 2px;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.line-red {
    background-color: var(--color-verified);
}

.line-blue {
    background-color: var(--color-secure);
}

.line-green {
    background-color: var(--color-matching);
}

.feature-card:hover .card-line {
    width: 60px;
}

.card-description {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: #fff7f5;
    /* Warm soft pink/cream background */
    border-top: 1px solid rgba(192, 28, 63, 0.06);
    padding: 80px 0 0 0;
    position: relative;
    overflow: hidden;
}
}

/* ==========================================================================
   Load Animations
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }

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

@keyframes subtleZoomIn {
    from {
        transform: scale(1.08);
    }

    to {
        transform: scale(1);
    }
}

.header {
    animation: fadeInDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-bg-img {
    animation: subtleZoomIn 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transform-origin: right top;
}

.badge-wrapper {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.hero-title {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards;
}

.hero-subtitle {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.hero-cta-buttons {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards;
}

.hero-features-bar {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1.4fr 0.9fr 0.9fr;
    gap: 48px;
    position: relative;
    z-index: 2;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: var(--primary-color);
}

/* About Column */
.footer-about .logo {
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
}

.footer-heart-divider {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 16px 0;
}

.footer-heart-divider .divider-line {
    width: 40px;
    height: 1px;
    background-color: rgba(192, 28, 63, 0.15);
}

.footer-heart-divider .heart-emoji {
    color: var(--accent-heart);
    opacity: 0.6;
    display: flex;
    align-items: center;
}

/* Contact details */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-item {
    display: flex;
    gap: 14px;
    align-items: center;
}

.contact-item:first-of-type {
    align-items: flex-start;
    /* Address aligns to top */
}

.contact-icon-circle {
    width: 36px;
    height: 36px;
    border-radius: var(--border-radius-full);
    background-color: #fff0f1;
    /* Soft pink/red circle background */
    color: var(--primary-color);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.contact-item:hover .contact-icon-circle {
    transform: scale(1.05);
    background-color: var(--primary-light);
}

.contact-text {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Split Lists Column */
.split-lists-container {
    display: flex;
    gap: 32px;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

.footer-links-list li a {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.footer-links-list li a:hover {
    color: var(--primary-color);
    transform: translateX(4px);
}

.footer-links-list li a .chevron {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 700;
    opacity: 0.6;
    transition: var(--transition-smooth);
}

.footer-links-list li a:hover .chevron {
    opacity: 1;
}

/* Social Column */
.social-icons-row {
    display: flex;
    gap: 16px;
    margin-top: 4px;
}

.social-circle-link {
    width: 44px;
    height: 44px;
    border-radius: var(--border-radius-full);
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.social-circle-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.social-circle-link.instagram {
    color: #e1306c;
}

.social-circle-link.facebook {
    color: #1877f2;
}

.social-circle-link.youtube {
    color: #ff0000;
}

.social-circle-link.linkedin {
    color: #0077b5;
}

.social-circle-link.instagram:hover {
    box-shadow: 0 6px 16px rgba(225, 48, 108, 0.2);
}

.social-circle-link.facebook:hover {
    box-shadow: 0 6px 16px rgba(24, 119, 242, 0.2);
}

.social-circle-link.youtube:hover {
    box-shadow: 0 6px 16px rgba(255, 0, 0, 0.2);
}

.social-circle-link.linkedin:hover {
    box-shadow: 0 6px 16px rgba(0, 119, 181, 0.2);
}

/* Footer Bottom Bar */
.footer-bottom-bar {
    background-color: #ffffff;
    padding: 24px 0;
    border-top: 1px solid rgba(192, 28, 63, 0.04);
    margin-top: 64px;
    position: relative;
    z-index: 2;
}

.bottom-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-text {
    font-size: 13.5px;
    color: var(--text-muted);
}

.copyright-text .highlight {
    color: var(--primary-color);
    font-weight: 700;
}

.center-heart-divider {
    display: flex;
    align-items: center;
    gap: 8px;
}

.center-heart-divider .bottom-divider-line {
    width: 60px;
    height: 1px;
    background-color: rgba(192, 28, 63, 0.1);
}

.center-heart-divider .bottom-heart {
    color: var(--accent-heart);
    display: flex;
    align-items: center;
}

.bottom-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bottom-links a {
    font-size: 13.5px;
    color: var(--text-muted);
    font-weight: 500;
}

.bottom-links a:hover {
    color: var(--primary-color);
}

.bottom-links .link-separator {
    color: rgba(192, 28, 63, 0.15);
    font-size: 12px;
}

/* Footer Media Queries */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding-top: 60px;
    }

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

    .split-lists-container {
        gap: 16px;
    }

    .footer-bottom-bar {
        margin-top: 48px;
        padding: 20px 0;
    }

    .bottom-bar-inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .center-heart-divider {
        display: none;
    }
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 44px;
    }

    .features-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none !important;
    }

    /* Hide desktop header items and show mobile ones */
    .menu-trigger-desktop,
    .nav-menu,
    .profile-avatar-btn {
        display: none !important;
    }

    .nav-actions {
        gap: 12px;
    }

    .mobile-only-btn {
        display: flex;
        width: 44px;
        height: 44px;
        box-shadow: none;
        border: 1px solid #eaeaea;
    }

    .mobile-only-btn#search-btn {
        color: #000;
        border: 1px solid #e0e0e0;
    }

    .mobile-only-btn.hamburger {
        background-color: #fff0f2;
        color: #000;
        border: 1px solid #ffe1e6;
    }

    .hero-section {
        padding-top: 90px;
        padding-bottom: 70px;
        min-height: 90vh;
    }

    .hero-bg-img {
        object-position: 72% top;
        /* Shift slightly to center the couple on mobile while keeping heads visible */
    }

    .hero-gradient-overlay {
        background: linear-gradient(to right,
                rgba(255, 244, 241, 0.92) 0%,
                rgba(255, 244, 241, 0.7) 45%,
                rgba(255, 244, 241, 0.25) 75%,
                transparent 100%);
    }

    .hero-content {
        max-width: 450px;
        text-align: left;
    }

    .badge-wrapper {
        margin-bottom: 16px;
    }

    .hero-badge {
        padding: 5px 12px;
        font-size: 11px;
    }

    .hero-badge svg {
        width: 12px;
        height: 12px;
    }

    .hero-title {
        font-size: 34px;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        margin-bottom: 20px;
        font-size: 14px;
    }

    .hero-cta-buttons {
        justify-content: flex-start;
        gap: 12px;
        margin-bottom: 24px;
    }

    .hero-features-bar {
        margin: 0;
        padding: 10px 16px;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .feature-card {
        padding: 24px 12px;
    }

    .card-title {
        font-size: 16px;
    }

    .card-description {
        font-size: 13px;
    }

    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 580px) {
    .hero-section {
        min-height: auto;
        padding-bottom: 90px;
    }

    .hero-bg-img {
        object-position: 70% top;
        /* Optimize focus on the couple */
    }

    .hero-gradient-overlay {
        background: linear-gradient(to right,
                rgba(255, 244, 241, 0.88) 0%,
                rgba(255, 244, 241, 0.6) 40%,
                rgba(255, 244, 241, 0.15) 75%,
                transparent 100%);
    }

    .hero-content {
        max-width: 100%;
        padding-right: 20px;
    }

    /* Keep features cards in a row with horizontal scrolling on extra small mobile devices to match mockup cleanly without text squishing */
    .features-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding: 10px 4px 24px 4px;
        margin: 0 -16px;
        padding-left: 16px;
        padding-right: 16px;
        scrollbar-width: none;
        /* Firefox */
    }

    .features-grid::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari, Opera */
    }

    .feature-card {
        flex: 0 0 280px;
        scroll-snap-align: center;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0 20px;
    }

    .logo-text {
        font-size: 26px;
    }

    .hero-title {
        font-size: 32px;
        margin-bottom: 14px;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .hero-cta-buttons {
        flex-direction: row;
        gap: 10px;
        width: 100%;
        margin-bottom: 28px;
    }

    .btn {
        padding: 10px 16px;
        font-size: 14px;
        flex: 1;
        border-radius: var(--border-radius-sm);
    }

    .hero-features-bar {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 12px;
        padding: 10px 16px;
        width: 100%;
        white-space: nowrap;
        scrollbar-width: none;
    }

    .hero-features-bar::-webkit-scrollbar {
        display: none;
    }

    .feature-divider {
        display: block;
        flex: 0 0 1px;
        margin: 0;
        height: 12px;
    }

    .feature-item {
        font-size: 11px;
        flex-shrink: 0;
    }

    .bottom-wave {
        height: 60px;
    }

    .wave-heart-badge {
        bottom: 18px;
        width: 36px;
        height: 36px;
    }

    .wave-heart-badge svg {
        width: 16px;
        height: 16px;
    }
}

/* ==========================================================================
   Recent Profiles Sections
   ========================================================================== */
.profiles-section {
    padding: 20px 0 80px 0;
    background-color: #ffffff;
}

.profiles-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px;
}

.profiles-header-row.section-divider {
    margin-top: 72px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 56px;
}

.header-icon-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.heart-icon-badge {
    width: 38px;
    height: 38px;
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    background-color: #fdf2f4;
    color: var(--color-verified);
}

.section-sub-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.section-sub-desc {
    font-size: 15px;
    color: var(--text-muted);
    margin-top: 4px;
    margin-left: 50px;
}

.view-all-link {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-verified);
    transition: var(--transition-smooth);
}

.view-all-link:hover {
    color: var(--primary-hover);
}

.view-all-link .arrow {
    transition: transform 0.2s ease;
}

.view-all-link:hover .arrow {
    transform: translateX(4px);
}

/* Profiles Grid */
.profiles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.profile-card {
    background-color: #ffffff;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.profile-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(192, 28, 63, 0.04);
}

.card-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
    background-color: #f7fafc;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.profile-card:hover .profile-img {
    transform: scale(1.04);
}

/* Badges styling */
.card-img-wrapper .badge {
    position: absolute;
    top: 14px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.card-img-wrapper .premium-badge {
    left: 14px;
    color: #ffffff;
}

.card-img-wrapper .premium-badge.pink {
    background-color: var(--primary-color);
}

.card-img-wrapper .premium-badge.blue {
    background-color: var(--color-secure);
}

.card-img-wrapper .verified-badge {
    right: 14px;
    background-color: rgba(34, 197, 94, 0.9);
    color: #ffffff;
}

.card-img-wrapper .verified-badge svg {
    stroke: #ffffff;
}

/* Card Body */
.profile-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.profile-name-age {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.profile-name-age h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
}

.verified-icon-check {
    background-color: var(--color-verified);
    color: #ffffff;
    width: 16px;
    height: 16px;
    border-radius: var(--border-radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
}

.verified-icon-check.blue-theme {
    background-color: var(--color-secure);
}

/* Profile details */
.profile-details-list {
    list-style: none;
    margin-bottom: 14px;
    font-size: 13px;
    color: var(--text-muted);
}

.profile-details-list li {
    margin-bottom: 5px;
}

.profile-details-list li span {
    color: #cbd5e0;
    margin: 0 4px;
}

.profile-details-list .bold-detail {
    font-weight: 600;
    color: #2d3748;
}

.profile-bio {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
    flex: 1;
    border-top: 1px dashed #edf2f7;
    padding-top: 10px;
}

/* Action Buttons */
.profile-card-actions {
    display: flex;
    gap: 8px;
}

.btn-action-shortlist,
.btn-action-view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 10px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    flex: 1;
    transition: var(--transition-smooth);
}

.btn-action-shortlist {
    background-color: transparent;
    border: 1px solid;
}

.btn-action-shortlist.pink-theme {
    color: var(--color-verified);
    border-color: var(--color-verified);
}

.btn-action-shortlist.pink-theme:hover {
    background-color: #fff5f6;
}

.btn-action-shortlist.blue-theme {
    color: var(--color-secure);
    border-color: var(--color-secure);
}

.btn-action-shortlist.blue-theme:hover {
    background-color: #eff6ff;
}

.btn-action-view {
    color: #ffffff;
    border: none;
    background-color: var(--primary-color);
}

.btn-action-view:hover {
    background-color: var(--primary-hover);
}

/* Responsive updates for profiles */
@media (max-width: 1024px) {
    .profiles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

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

    .section-sub-title {
        font-size: 22px;
    }

    .section-sub-desc {
        margin-left: 0;
        font-size: 13.5px;
    }

    .profiles-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 24px;
    }

    .profiles-header-row.section-divider {
        margin-top: 48px;
        padding-top: 36px;
    }
}

@media (max-width: 580px) {
    .profiles-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding: 10px 4px 24px 4px;
        margin: 0 -16px;
        padding-left: 16px;
        padding-right: 16px;
        scrollbar-width: none;
        /* Firefox */
    }

    .profiles-grid::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari, Opera */
    }

    .profile-card {
        flex: 0 0 280px;
        max-width: 280px;
        scroll-snap-align: center;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
        margin: 0;
    }
}

/* ==========================================================================
   Load Animations
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }

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

@keyframes subtleZoomIn {
    from {
        transform: scale(1.08);
    }

    to {
        transform: scale(1);
    }
}

.header {
    animation: fadeInDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-bg-img {
    animation: subtleZoomIn 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transform-origin: right top;
}

.badge-wrapper {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.hero-title {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards;
}

.hero-subtitle {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.hero-cta-buttons {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards;
}

.hero-features-bar {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}

/* ==========================================================================
   About Paird Section
   ========================================================================== */
.about-paird-section {
    padding: 80px 0;
    background-color: #fafbfc;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 460px 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Image Column */
.about-image-column {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg, 24px);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    background: #ffffff;
}

.about-img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    display: block;
    border-radius: var(--border-radius-lg, 24px);
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-img {
    transform: scale(1.03);
}

.about-heart-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 64px;
    height: 64px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(192, 28, 63, 0.25);
    border: 3px solid #ffffff;
    z-index: 10;
    animation: floatHeart 3s ease-in-out infinite alternate;
}

@keyframes floatHeart {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-8px);
    }
}

/* Right Content Column */
.about-content-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background-color: var(--primary-light, #fef0f2);
    color: var(--primary-color, #c01c3f);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: var(--border-radius-full, 9999px);
    margin-bottom: 16px;
}

.hero-badge.about-badge .heart-icon {
    fill: var(--primary-color, #c01c3f);
}

.about-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 38px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--text-dark, #1f273d);
    margin-bottom: 24px;
}

.about-title .highlight {
    color: var(--primary-color, #c01c3f);
}

.about-text-content {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted, #5e6678);
}

.about-text-content p {
    margin-bottom: 16px;
}

.highlight-link {
    color: var(--primary-color, #c01c3f);
    text-decoration: underline;
    font-weight: 600;
}

.highlight-link:hover {
    color: var(--primary-hover, #a31432);
}

.text-divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
    color: var(--primary-color, #c01c3f);
    opacity: 0.5;
}

.text-divider::before,
.text-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

.text-divider svg {
    margin: 0 12px;
}

/* Contact Cards */
.about-contact-cards {
    display: flex;
    gap: 20px;
    margin-top: 28px;
    width: 100%;
}

.support-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: var(--border-radius-md, 16px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
    flex: 1;
    transition: var(--transition-smooth, all 0.3s ease);
}

.support-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(192, 28, 63, 0.08);
    border-color: #fce8ec;
}

.support-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.support-icon.bg-red {
    background: var(--primary-light, #fef0f2);
    color: var(--primary-color, #c01c3f);
}

.support-text {
    display: flex;
    flex-direction: column;
}

.support-label {
    font-size: 12px;
    color: var(--text-muted, #5e6678);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.support-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark, #1f273d);
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-img {
        height: 400px;
    }

    .about-heart-badge {
        right: -10px;
        bottom: -10px;
        width: 56px;
        height: 56px;
    }
}

@media (max-width: 580px) {
    .about-contact-cards {
        flex-direction: column;
        gap: 12px;
    }

    .about-title {
        font-size: 28px;
    }
}

/* ==========================================================================
   Page Inner Hero Banner
   ========================================================================== */
.page-hero-banner {
    position: relative;
    padding: 130px 0 50px 0;
    background: linear-gradient(135deg, #1f273d 0%, #3a0d17 50%, #9c1524 100%);
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.page-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(223, 71, 89, 0.25) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #ffffff;
}

.breadcrumb-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

.breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.2s;
}

.breadcrumb-nav a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.breadcrumb-nav .separator {
    color: var(--primary-color, #c01c3f);
    font-weight: 700;
}

/* ==========================================================================
   Stats Counter Grid
   ========================================================================== */
.stats-section {
    padding: 60px 0;
    background: #ffffff;
    border-bottom: 1px solid #edf2f7;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--border-radius-md, 16px);
    background: #fafbfc;
    border: 1px solid #edf2f7;
    transition: var(--transition-smooth, all 0.3s ease);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(192, 28, 63, 0.08);
    border-color: #fce8ec;
}

.stat-number {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 38px;
    font-weight: 800;
    color: var(--primary-color, #c01c3f);
    margin-bottom: 6px;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark, #1f273d);
}

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

@media (max-width: 580px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .page-hero-title {
        font-size: 28px;
    }
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */
.contact-section {
    padding: 80px 0;
    background-color: #fafbfc;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    align-items: start;
}

/* Contact Info Cards Side */
.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: var(--border-radius-md, 16px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
}

.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(192, 28, 63, 0.08);
    border-color: #fce8ec;
}

.contact-icon-box {
    width: 52px;
    height: 52px;
    background: var(--primary-light, #fef0f2);
    color: var(--primary-color, #c01c3f);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-content {
    display: flex;
    flex-direction: column;
}

.contact-card-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark, #1f273d);
    margin-bottom: 6px;
}

.contact-card-text {
    font-size: 14px;
    color: var(--text-muted, #5e6678);
    line-height: 1.6;
}

.contact-card-text a {
    color: var(--text-dark, #1f273d);
    font-weight: 600;

}

.contact-card-text a:hover {
    color: var(--primary-color, #c01c3f);
}

/* Form Container Side */
.contact-form-card {
    background: #ffffff;
    padding: 40px;
    border-radius: var(--border-radius-lg, 24px);
    border: 1px solid #edf2f7;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.contact-form-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark, #1f273d);
    margin-bottom: 8px;
}

.contact-form-subtitle {
    font-size: 14px;
    color: var(--text-muted, #5e6678);
    margin-bottom: 28px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark, #1f273d);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    font-family: var(--font-body, 'Inter', sans-serif);
    color: var(--text-dark, #1f273d);
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: var(--border-radius-sm, 10px);
    outline: none;
    transition: var(--transition-smooth);
}

.form-control:focus {
    background: #ffffff;
    border-color: var(--primary-color, #c01c3f);
    box-shadow: 0 0 0 4px rgba(192, 28, 63, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 130px;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    background: var(--primary-color, #c01c3f);
    color: #ffffff;
    border-radius: var(--border-radius-sm, 10px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(192, 28, 63, 0.25);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-submit:hover {
    background: var(--primary-hover, #a31432);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(192, 28, 63, 0.35);
}

/* Map Section */
.map-section {
    padding: 0 0 80px 0;
    background: #fafbfc;
}

.map-wrapper {
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius-lg, 24px);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #edf2f7;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 580px) {
    .form-row-2 {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-card {
        padding: 24px 18px;
    }
}

/* ==========================================================================
   Plans & Pricing Page Styles
   ========================================================================== */
.plans-section {
    padding: 80px 0;
    background-color: #fafbfc;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.plan-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: var(--border-radius-lg, 24px);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth, all 0.3s ease);
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.plan-card.plan-popular {
    border: 2px solid var(--primary-color, #c01c3f);
    box-shadow: 0 15px 40px rgba(192, 28, 63, 0.15);
    transform: scale(1.03);
}

.plan-card.plan-popular:hover {
    transform: scale(1.03) translateY(-8px);
    box-shadow: 0 25px 55px rgba(192, 28, 63, 0.22);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color, #c01c3f);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 20px;
    border-radius: var(--border-radius-full, 9999px);
    box-shadow: 0 6px 16px rgba(192, 28, 63, 0.3);
}

.plan-header {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid #f0f4f8;
    margin-bottom: 24px;
}

.plan-tag {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color, #c01c3f);
    margin-bottom: 8px;
}

.plan-name {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark, #1f273d);
    margin-bottom: 16px;
}

.plan-price-box {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.plan-currency {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark, #1f273d);
}

.plan-amount {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 44px;
    font-weight: 800;
    color: var(--text-dark, #1f273d);
    line-height: 1;
}

.plan-duration {
    font-size: 14px;
    color: var(--text-muted, #5e6678);
    font-weight: 500;
}

.plan-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    flex: 1;
}

.plan-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-dark, #1f273d);
    margin-bottom: 14px;
}

.plan-feature-item.disabled {
    color: #a0aec0;
    text-decoration: line-through;
}

.icon-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #e6f4ea;
    color: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-cross {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #edf2f7;
    color: #a0aec0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.plan-cta-btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    border-radius: var(--border-radius-md, 12px);
    transition: var(--transition-smooth);
    display: block;
}

.plan-cta-btn.btn-outline {
    background: transparent;
    color: var(--primary-color, #c01c3f);
    border: 2px solid var(--primary-color, #c01c3f);
}

.plan-cta-btn.btn-outline:hover {
    background: var(--primary-light, #fef0f2);
}

.plan-cta-btn.btn-filled {
    background: var(--primary-color, #c01c3f);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(192, 28, 63, 0.25);
}

.plan-cta-btn.btn-filled:hover {
    background: var(--primary-hover, #a31432);
    box-shadow: 0 12px 28px rgba(192, 28, 63, 0.35);
}

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

.section-header-center {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 50px auto;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color, #c01c3f);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-heading-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 34px;
    font-weight: 800;
    color: var(--text-dark, #1f273d);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-card {
    padding: 24px 28px;
    background: #fafbfc;
    border: 1px solid #edf2f7;
    border-radius: var(--border-radius-md, 16px);
}

.faq-question {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark, #1f273d);
    margin-bottom: 10px;
}

.faq-answer {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted, #5e6678);
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .plan-card.plan-popular {
        transform: none;
    }

    .plan-card.plan-popular:hover {
        transform: translateY(-8px);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Auth / Login & Register Pages
   ========================================================================== */
.auth-body-bg {
    background-color: #f7f5ef;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    font-family: var(--font-body, 'Inter', sans-serif);
}

.auth-container {
    width: 100%;
    max-width: 440px;
    margin: auto;
}

.auth-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 44px 36px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
    text-align: center;
    border: 1px solid #f0eee6;
}

.auth-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.auth-logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.auth-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark, #1f273d);
    margin-bottom: 6px;
}

.auth-subtitle {
    font-size: 14px;
    color: var(--text-muted, #718096);
    margin-bottom: 30px;
}

.auth-form {
    text-align: left;
}

.input-box-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #ebf3fe;
    border-radius: 12px;
    padding: 0 16px;
    border: 1.5px solid transparent;
    transition: var(--transition-smooth);
}

.input-box-wrapper:focus-within {
    background: #ffffff;
    border-color: var(--primary-color, #c01c3f);
    box-shadow: 0 0 0 4px rgba(192, 28, 63, 0.1);
}

.input-icon-left {
    color: var(--primary-color, #c01c3f);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.auth-input-field {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 14px 12px;
    font-size: 14px;
    font-family: var(--font-body, 'Inter', sans-serif);
    color: #1a202c;
    font-weight: 500;
}

.input-icon-right {
    color: #a0aec0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: color 0.2s;
}

.input-icon-right:hover {
    color: var(--primary-color, #c01c3f);
}

.auth-options-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0 26px 0;
    font-size: 13px;
}

.remember-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4a5568;
    cursor: pointer;
    user-select: none;
    font-weight: 500;
}

.remember-checkbox {
    accent-color: var(--primary-color, #c01c3f);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.forgot-link {
    color: var(--primary-color, #c01c3f);
    font-weight: 700;
    transition: color 0.2s;
}

.forgot-link:hover {
    color: var(--primary-hover, #a31432);
    text-decoration: underline;
}

.btn-auth-submit {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    background: var(--primary-color, #c01c3f);
    color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(192, 28, 63, 0.25);
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
}

.btn-auth-submit:hover {
    background: var(--primary-hover, #a31432);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(192, 28, 63, 0.35);
}

.auth-divider-line {
    margin: 26px 0;
    border-top: 1px solid #edf2f7;
}

.auth-footer-text {
    font-size: 14px;
    color: var(--text-muted, #718096);
}

.auth-footer-text a {
    color: var(--primary-color, #c01c3f);
    font-weight: 700;
}

.auth-footer-text a:hover {
    text-decoration: underline;
}

/* Registration Extensions */
.auth-container.register-container {
    max-width: 720px;
}

.auth-select-field {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 14px 12px;
    font-size: 14px;
    font-family: var(--font-body, 'Inter', sans-serif);
    color: #4a5568;
    font-weight: 500;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234a5568' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

.input-box-wrapper.white-bg {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
}

.input-box-wrapper.white-bg:focus-within {
    border-color: var(--primary-color, #c01c3f);
}

.form-row-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.country-prefix-select {
    border: none;
    outline: none;
    background: transparent;
    font-size: 13px;
    font-weight: 600;
    color: #4a5568;
    padding-right: 8px;
    border-right: 1px solid #e2e8f0;
    margin-right: 8px;
    cursor: pointer;
}

.auth-divider-or {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 24px 0;
    color: #a0aec0;
    font-size: 13px;
    font-weight: 500;
}

.auth-divider-or::before,
.auth-divider-or::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #edf2f7;
}

.auth-divider-or span {
    padding: 0 14px;
}

@media (max-width: 768px) {
    .form-row-3 {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* ==========================================================================
   Side Drawer Navigation Menu
   ========================================================================== */
.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: #ffffff;
    z-index: 9999;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

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

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #f0f0f0;
}

.drawer-logo img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.drawer-close-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #4a5568;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth, all 0.3s ease);
}

.drawer-close-btn:hover {
    background: #f7fafc;
    color: var(--primary-color, #c01c3f);
    border-color: #fce8ec;
}

.drawer-body {
    padding: 20px 24px 30px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.drawer-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.drawer-menu-list li {
    border-bottom: 1px solid #f5f5f5;
}

.drawer-menu-item {
    display: block;
    padding: 13px 0;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark, #1f273d);
    transition: color 0.2s;
}

.drawer-menu-item:hover,
.drawer-menu-item.active {
    color: var(--primary-color, #c01c3f);
    font-weight: 600;
}

.drawer-social-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    margin-bottom: 24px;
}

.drawer-social-icon {
    width: 36px;
    height: 36px;
    background: #f7f7f7;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a5568;
    transition: var(--transition-smooth, all 0.3s ease);
}

.drawer-social-icon:hover {
    background: var(--primary-light, #fef0f2);
    color: var(--primary-color, #c01c3f);
}

/* Promo Banner inside Drawer */
.drawer-promo-banner {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #31101e 100%), url('assets/images/couple.jpg');
    background-size: cover;
    background-position: center;
    padding: 24px 20px;
    color: #ffffff;
    margin-top: auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.drawer-promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.75);
    z-index: 1;
}

.promo-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.promo-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 6px;
    color: #ffffff;
}

.promo-subtitle {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
    line-height: 1.4;
}

.btn-promo-register {
    display: inline-block;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 800;
    color: #ffffff;
    background: #2563eb;
    border-radius: 8px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
    transition: var(--transition-smooth, all 0.3s ease);
}

.btn-promo-register:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}


/* =========================================================
   SEARCH PANEL DRAWER
   ========================================================= */

/* Overlay shared with mobile drawer */
.search-panel-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(3px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.search-panel-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Search Panel */
.search-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 440px;
    height: 100vh;
    background: #ffffff;
    z-index: 9999;
    transform: translateX(-110%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 4px 0 30px rgba(0, 0, 0, 0.12);
}

.search-panel.active {
    transform: translateX(0);
}

/* Panel Header */
.search-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
}

.search-panel-logo img {
    height: 36px;
    width: auto;
}

.search-panel-close {
    width: 34px;
    height: 34px;
    background: #fff0f2;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #c01c3f;
    transition: background 0.2s ease, transform 0.2s ease;
}

.search-panel-close:hover {
    background: #ffd6df;
    transform: rotate(90deg);
}

/* Panel Body — scrollable */
.search-panel-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.search-panel-body::-webkit-scrollbar {
    width: 4px;
}

.search-panel-body::-webkit-scrollbar-thumb {
    background: #f0d0d6;
    border-radius: 4px;
}

/* Quick ID/Name search bar */
.search-id-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    border: 1.5px solid #eaeaea;
    border-radius: 12px;
    padding: 12px 16px;
    transition: border-color 0.2s ease;
}

.search-id-bar:focus-within {
    border-color: #c01c3f;
    background: #fff8f9;
}

.search-id-bar svg {
    color: #c01c3f;
    flex-shrink: 0;
}

.search-id-bar input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    color: #333;
    width: 100%;
}

.search-id-bar input::placeholder {
    color: #aaa;
}

/* Advanced Search Header */
.adv-search-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
}

.adv-search-header svg {
    color: #c01c3f;
}

/* Search Field Group */
.search-field-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.search-field-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 700;
    color: #1a1a2e;
}

.search-field-label svg {
    color: #c01c3f;
    flex-shrink: 0;
}

/* Age Range row */
.age-range-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.age-range-row input {
    flex: 1;
    border: 1.5px solid #eaeaea;
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 13px;
    color: #333;
    outline: none;
    background: #fafafa;
    transition: border-color 0.2s ease;
}

.age-range-row input:focus {
    border-color: #c01c3f;
    background: #fff8f9;
}

.age-range-sep {
    font-size: 18px;
    color: #999;
    font-weight: 600;
    flex-shrink: 0;
}

/* Select & Text inputs */
.search-select,
.search-input {
    width: 100%;
    border: 1.5px solid #eaeaea;
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 13px;
    color: #333;
    outline: none;
    background: #fafafa;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    transition: border-color 0.2s ease;
    cursor: pointer;
}

.search-input {
    background-image: none;
    cursor: text;
}

.search-select:focus,
.search-input:focus {
    border-color: #c01c3f;
    background-color: #fff8f9;
}

/* Panel Footer — action buttons */
.search-panel-footer {
    padding: 16px 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid #f0f0f0;
    flex-shrink: 0;
    background: #fff;
}

.btn-search-profiles {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #c01c3f, #e0284f);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(192, 28, 63, 0.35);
}

.btn-search-profiles:hover {
    background: linear-gradient(135deg, #a81835, #c0203e);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192, 28, 63, 0.45);
}

.btn-clear-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    padding: 13px;
    background: transparent;
    color: #555;
    font-size: 13px;
    font-weight: 600;
    border: 1.5px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-clear-all:hover {
    border-color: #c01c3f;
    color: #c01c3f;
    background: #fff8f9;
}

/* ==========================================================================
   Dashboard Page Styles
   ========================================================================== */
.dashboard-body-bg {
    background-color: #fdfbf7;
    font-family: var(--font-body);
}

.dashboard-header-static {
    position: relative !important;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.dashboard-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 30px 24px 60px;
}

/* Top Welcome Header & Search */
.dash-welcome-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.dash-welcome-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: #1f273d;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dash-welcome-subtitle {
    color: #788296;
    font-size: 14px;
}

.dash-search-box {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e8ecef;
    border-radius: 999px;
    padding: 6px 6px 6px 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    width: 100%;
    max-width: 440px;
}

.dash-search-input-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.dash-search-input-wrap svg {
    color: #94a3b8;
    flex-shrink: 0;
}

.dash-search-input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 13.5px;
    width: 100%;
    color: #334155;
}

.dash-search-input::placeholder {
    color: #94a3b8;
}

.dash-search-btn {
    background: #b8122a;
    color: #ffffff;
    border: none;
    padding: 9px 24px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dash-search-btn:hover {
    background: #960c20;
    transform: translateY(-1px);
}

/* Stat Cards Row */
.dash-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 24px;
}

.dash-stat-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    border: 1px solid #f1f5f9;
    transition: var(--transition-smooth);
}

.dash-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.dash-stat-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dash-stat-icon.red {
    background: #ffebee;
    color: #e53935;
}

.dash-stat-icon.pink {
    background: #fce4ec;
    color: #d81b60;
}

.dash-stat-icon.purple {
    background: #f3e5f5;
    color: #8e24aa;
}

.dash-stat-icon.orange {
    background: #fff3e0;
    color: #fb8c00;
}

.dash-stat-info .stat-num {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
}

.dash-stat-info .stat-label {
    font-size: 12.5px;
    color: #64748b;
    font-weight: 500;
}

/* Plan Benefits Card */
.dash-benefits-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 22px 26px;
    margin-bottom: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    border: 1px solid #f1f5f9;
}

.dash-benefits-header {
    margin-bottom: 18px;
}

.dash-benefits-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2px;
}

.dash-benefits-subtitle {
    font-size: 13px;
    color: #64748b;
}

.dash-benefits-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    background: #fffafa;
    border: 1px solid #fce8eb;
    padding: 14px 24px;
    border-radius: 12px;
}

.dash-benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13.5px;
    color: #334155;
}

.dash-benefit-item-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffebee;
    color: #d32f2f;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dash-benefit-val {
    font-weight: 700;
    color: #c01c3f;
    margin-left: 8px;
}

/* Section Header */
.dash-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.dash-section-title {
    font-size: 17px;
    font-weight: 700;
    color: #1e293b;
}

.dash-view-all {
    color: #b8122a;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition-smooth);
}

.dash-view-all:hover {
    color: #88091c;
    gap: 6px;
}

/* Profile Grids & Cards */
.dash-profiles-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-bottom: 34px;
}

.dash-profile-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.dash-profile-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}

.dash-profile-img-wrap {
    position: relative;
    width: 100%;
    padding-top: 100%;
    /* Square aspect ratio */
    overflow: hidden;
    background: #e2e8f0;
}

.dash-profile-img-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.dash-profile-card:hover .dash-profile-img-wrap img {
    transform: scale(1.05);
}

.online-dot {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 9px;
    height: 9px;
    background-color: #22c55e;
    border: 2px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

.dash-profile-body {
    padding: 12px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dash-profile-name {
    font-size: 13.5px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dash-profile-loc {
    font-size: 11.5px;
    color: #64748b;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dash-card-action-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dash-card-action-btn:hover {
    background: #ffebee;
    border-color: #fca5a5;
    color: #e53935;
}

.dash-card-footer {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.btn-card-view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 100%;
    padding: 6px 10px;
    background: #fff0f2;
    color: #c01c3f;
    font-size: 11.5px;
    font-weight: 600;
    border: 1px solid #fca5a5;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-card-view:hover {
    background: #c01c3f;
    color: #ffffff;
    border-color: #c01c3f;
    box-shadow: 0 4px 12px rgba(192, 28, 63, 0.2);
}

.dash-viewed-time {
    font-size: 10px;
    color: #e53935;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 4px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .dash-profiles-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .dash-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dash-profiles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dash-benefits-list {
        flex-direction: column;
        align-items: flex-start;
    }

    .dash-welcome-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .dash-search-box {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .dash-profiles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    /* Welcome section */
    .dash-welcome-title {
        font-size: 18px;
    }

    .dash-welcome-subtitle {
        font-size: 12px;
    }

    /* Stat cards - tighter padding & smaller text */
    .dash-stat-card {
        padding: 12px 14px;
        gap: 10px;
    }

    .dash-stat-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }

    .dash-stat-info .stat-num {
        font-size: 16px;
    }

    .dash-stat-info .stat-label {
        font-size: 10px;
        line-height: 1.3;
    }

    /* Plan Benefits */
    .dash-benefits-title {
        font-size: 15px;
    }

    .dash-benefits-subtitle {
        font-size: 11px;
    }

    .dash-benefits-card {
        padding: 16px 16px;
    }

    /* Profile cards */
    .dash-profile-name {
        font-size: 12px;
    }

    .dash-profile-loc {
        font-size: 10px;
    }

    .dash-viewed-time {
        font-size: 9px;
    }

    .btn-card-view {
        font-size: 10px;
        padding: 5px 8px;
    }

    /* Search bar */
    .dash-search-input {
        font-size: 12px;
    }

    .dash-search-btn {
        font-size: 12px;
        padding: 8px 16px;
    }

    /* Section headers */
    .dash-section-title {
        font-size: 15px;
    }

    .dash-view-all {
        font-size: 12px;
    }
}

/* ==========================================================================
   Profile View Page Styles
   ========================================================================== */
.profile-page-wrapper {
    padding-top: 140px;
    padding-bottom: 60px;
}

.profile-page-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 992px) {
    .profile-page-grid {
        flex-direction: row;
        align-items: flex-start;
    }
}

/* Sidebar */
.profile-sidebar {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 992px) {
    .profile-sidebar {
        width: 340px;
        flex-shrink: 0;
        position: sticky;
        top: 142px;
    }
}

.profile-main-card,
.profile-about-card,
.profile-detail-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
}

.profile-main-img-wrap {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 16px;
    position: relative;
    padding-top: 100%;
    /* 1:1 Aspect Ratio */
}

.profile-main-img-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.profile-main-name {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.profile-badge-user {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    color: #475569;
    background: #f1f5f9;
    padding: 4px 8px;
    border-radius: 20px;
}

.profile-sub-info {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 16px;
    font-weight: 500;
}

.profile-education-loc {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.profile-education-loc span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #1e293b;
}

.profile-action-buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.profile-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.profile-action-btn svg {
    width: 48px;
    height: 48px;
    padding: 13px;
    border-radius: 50%;
    background: #f8fafc;
    transition: all 0.2s ease;
}

.btn-shortlist svg {
    color: #64748b;
}

.btn-interest svg {
    color: #e53935;
    background: #ffebee;
}

.btn-contact svg {
    color: #4caf50;
    background: #e8f5e9;
}

.btn-chat svg {
    color: #c01c3f;
    background: #fff0f2;
}

.profile-action-btn:hover svg {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.btn-lbl {
    font-size: 11px;
    font-weight: 500;
    color: #475569;
}

/* Card Typography */
.profile-card-title {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.profile-about-text {
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
    margin: 0;
}

/* Content Grid — CSS Grid for predictable left→right flow */
.profile-details-masonry {
    flex-grow: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
    padding-top: 0;
}

@media (min-width: 768px) {
    .profile-details-masonry {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 992px) {

    /* Add top padding only when sidebar + grid are side-by-side */
    .profile-details-masonry {
        padding-top: 33px;
    }
}

/* Mobile: reduce wrapper top spacing & profile page layout tweaks */
@media (max-width: 991px) {
    .profile-page-wrapper {
        padding-top: 24px;
        padding-bottom: 40px;
    }

    .profile-page-grid {
        gap: 16px;
    }

    .profile-sidebar {
        gap: 16px;
    }

    .profile-main-card,
    .profile-about-card,
    .profile-detail-card {
        padding: 20px;
    }

    .profile-details-masonry {
        gap: 16px;
    }
}

.profile-detail-list {
    display: flex;
    flex-direction: column;
}

.profile-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed #e2e8f0;
    font-size: 13px;
}

.profile-detail-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.profile-detail-row span:first-child {
    color: #64748b;
    font-weight: 500;
}

.profile-detail-row span.val {
    color: #1e293b;
    font-weight: 600;
    text-align: right;
    max-width: 65%;
    line-height: 1.4;
}

/* ==========================================================================
   Edit Profile Page Styles
   ========================================================================== */

/* Layout */
.edit-profile-wrapper {
    padding-top: 40px;
    padding-bottom: 60px;
}

@media (max-width: 991px) {
    .edit-profile-wrapper {
        padding-top: 24px;
        padding-bottom: 40px;
    }
}

.edit-profile-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 992px) {
    .edit-profile-layout {
        grid-template-columns: 320px 1fr;
        gap: 40px;
    }
}

/* Sidebar Elements */
.edit-photo-card,
.edit-tabs-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(226, 232, 240, 0.8);
    margin-bottom: 20px;
    text-align: center;
}

/* Photo Uploader */
.edit-photo-wrap {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 16px;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.edit-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.photo-upload-overlay {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: #c01c3f;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(192, 28, 63, 0.4);
    transition: all 0.3s ease;
}

.photo-upload-overlay:hover {
    background: #a01533;
    transform: scale(1.05);
}

.edit-profile-name {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 4px 0;
}

.edit-profile-id {
    font-size: 13px;
    color: #64748b;
    margin: 0 0 20px 0;
}

/* Progress Bar */
.profile-progress-container {
    text-align: left;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed #e2e8f0;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.progress-labels span:first-child {
    color: #475569;
}

.progress-percent {
    color: #c01c3f;
}

.progress-track {
    background: #f1f5f9;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    background: linear-gradient(90deg, #c01c3f, #e83a5f);
    height: 100%;
    border-radius: 4px;
    transition: width 0.5s ease;
}

/* Tabs */
.edit-tabs-card {
    padding: 12px;
}

.edit-tabs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.edit-tabs-list li {
    margin-bottom: 4px;
}

.edit-tab-btn {
    width: 100%;
    text-align: left;
    padding: 12px 16px;
    background: transparent;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.edit-tab-btn:hover {
    background: #f8fafc;
    color: #1e293b;
}

.edit-tab-btn.active {
    background: #fff1f2;
    color: #c01c3f;
    font-weight: 600;
}

/* Forms */
.edit-form-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(226, 232, 240, 0.8);
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.edit-form-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 24px 0;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    color: #1e293b;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-control:focus {
    outline: none;
    border-color: #c01c3f;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(192, 28, 63, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
    text-align: right;
}

.btn-save {
    background: #c01c3f;
    color: white;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(192, 28, 63, 0.2);
}

.btn-save:hover {
    background: #a01533;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(192, 28, 63, 0.3);
}

/* ==========================================================================
   My Profile (View) Page Styles
   ========================================================================== */

.my-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.my-photo-card,
.my-stats-card,
.my-about-card,
.my-detail-wide-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
}

@media (max-width: 767px) {

    .my-photo-card,
    .my-stats-card,
    .my-about-card,
    .my-detail-wide-card {
        padding: 24px;
    }
}

.my-photo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.my-photo-wrap {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    position: relative;
    margin-bottom: 20px;
}

.my-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.my-camera-btn {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 36px;
    height: 36px;
    background: #c01c3f;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(192, 28, 63, 0.2);
    cursor: pointer;
    transition: all 0.2s ease;
}

.my-camera-btn:hover {
    color: #ffffff;
    background: #a01533;
    transform: scale(1.05);
}

.my-profile-name {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.my-profile-loc {
    font-size: 14px;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 16px;
}

.my-plan-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: #fff0f2;
    color: #c01c3f;
    font-size: 13px;
    font-weight: 600;
    border-radius: 30px;
}

/* Stats Card */
.my-stats-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.stat-item:not(:last-child) {
    border-right: 1px solid #f1f5f9;
}

.stat-icon {
    margin-bottom: 4px;
}

.stat-icon.heart {
    color: #e53935;
}

.stat-icon.eye {
    color: #c01c3f;
}

.stat-icon.chat {
    color: #64748b;
}

.stat-val {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1;
}

.stat-lbl {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

/* About Card */
.my-about-title {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 16px 0;
}

.my-about-text {
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
    margin: 0;
}

/* Main Detail Card */
.my-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.my-detail-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-outline-edit {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border: 1.5px solid #c01c3f;
    color: #c01c3f;
    background: transparent;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-outline-edit:hover {
    background: #fff0f2;
}

.profile-detail-list .profile-detail-row {
    padding: 16px 0;
    border-bottom: 1px solid #f1f5f9;
}

.profile-detail-list .profile-detail-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* ==========================================================================
   Billing Page Styles (Full-Width Template)
   ========================================================================== */

.billing-page-wrapper {
    padding-top: 40px;
    padding-bottom: 80px;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.mt-40 {
    margin-top: 40px;
}

/* 1. Hero Card (Current Plan) */
.billing-hero-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.hero-card-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1.5;
}

.hero-icon-box {
    width: 64px;
    height: 64px;
    background: #fff5f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-plan-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
}

.hero-plan-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
}

.badge-active {
    background: #e6f4ea;
    color: #137333;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.hero-validity {
    font-size: 14px;
    color: #475569;
    margin: 0 0 4px 0;
}

.days-left {
    color: #137333;
    font-weight: 600;
}

.hero-desc {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

.hero-card-middle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 2;
    padding: 0 40px;
    border-left: 1px solid #f1f5f9;
    border-right: 1px solid #f1f5f9;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}

.hero-stat span {
    font-size: 12px;
    color: #64748b;
}

.hero-stat strong {
    font-size: 14px;
    color: #1e293b;
    font-weight: 700;
}

.hero-card-right {
    flex: 0.8;
    display: flex;
    justify-content: flex-end;
}

.btn-hero-upgrade {
    background: #b30000;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-hero-upgrade:hover {
    background: #8e0000;
}

@media (max-width: 991px) {
    .billing-hero-card {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    .hero-card-middle {
        width: 100%;
        padding: 24px 0;
        border-left: none;
        border-right: none;
        border-top: 1px solid #f1f5f9;
        border-bottom: 1px solid #f1f5f9;
        justify-content: space-around;
    }

    .hero-card-right {
        width: 100%;
        justify-content: stretch;
    }

    .btn-hero-upgrade {
        width: 100%;
    }
}

/* 2. Select a Plan Grid */
.select-plan-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1200px) {
    .select-plan-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .select-plan-grid {
        grid-template-columns: 1fr;
    }
}

.plan-grid-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
    position: relative;
    display: flex;
    flex-direction: column;
}

.plan-grid-item.pg-popular {
    border: 2px solid #b30000;
}

.pg-ribbon {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #b30000;
    color: #fff;
    padding: 4px 16px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
}

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

.pg-icon {
    width: 48px;
    height: 48px;
    background: #fff5f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pg-title-box h3 {
    margin: 0 0 4px 0;
    font-size: 16px;
    color: #1e293b;
    font-weight: 700;
}

.pg-title-box p {
    margin: 0;
    font-size: 12px;
    color: #64748b;
}

.pg-price {
    font-size: 28px;
    font-weight: 800;
    color: #b30000;
    margin-bottom: 24px;
}

.pg-price span {
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
}

.pg-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    flex-grow: 1;
}

.pg-features li {
    font-size: 14px;
    color: #1e293b;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-icon {
    color: #4caf50;
    font-weight: 800;
    background: #e8f5e9;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 11px;
}

.btn-pg-select {
    width: 100%;
    padding: 12px;
    border: 1px solid #b30000;
    background: transparent;
    color: #b30000;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-pg-select:hover {
    background: #fff5f6;
}

.btn-pg-select.active {
    background: #b30000;
    color: #fff;
}

.btn-pg-select.active:hover {
    background: #8e0000;
}

/* 3. History Table Section */
.history-table-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
}

.table-responsive {
    overflow-x: auto;
}

.new-history-table {
    width: 100%;
    border-collapse: collapse;
}

.new-history-table th {
    text-align: left;
    padding: 16px;
    color: #1e293b;
    font-weight: 700;
    font-size: 14px;
    border-bottom: 2px solid #f1f5f9;
}

.new-history-table td {
    padding: 16px;
    color: #475569;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid #f1f5f9;
}

.new-history-table tr:last-child td {
    border-bottom: none;
}

.status-pill {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.status-pill.success {
    background: #e6f4ea;
    color: #137333;
}

.status-pill.expired {
    background: #fff3e0;
    color: #e65100;
}

.dl-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.dl-icon:hover {
    transform: translateY(-2px);
}

.table-pagination-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #f1f5f9;
}

.table-pagination-footer p {
    margin: 0;
    font-size: 14px;
    color: #64748b;
}

.pagination-controls {
    display: flex;
    gap: 8px;
}

.page-btn {
    padding: 6px 12px;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #475569;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

.page-btn:hover {
    background: #f8fafc;
}

.page-btn.active {
    background: #b30000;
    color: #fff;
    border-color: #b30000;
}

/* ==========================================================================
   Interests Page Styles
   ========================================================================== */

.interests-wrapper {
    padding-top: 40px;
    padding-bottom: 80px;
}

.interests-page-header {
    margin-bottom: 24px;
}

.interests-page-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 4px 0;
}

.interests-page-subtitle {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

/* Toolbar: Tabs */
.interests-toolbar {
    margin-bottom: 24px;
}

/* Tabs: full-width pill strip */
.interests-tabs {
    width: 100%;
    max-width: 500px;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 30px;
    padding: 4px;
    display: flex;
    gap: 2px;
}

.int-tab {
    flex: 1;
    border: none;
    border-radius: 26px;
    font-size: 14px;
    padding: 8px 10px;
    justify-content: center;
    background: transparent;
    color: #475569;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
}

.int-tab:hover {
    color: #b30000;
}

.int-tab.active {
    background: #b30000;
    color: #fff;
}

/* Hide tab counts */
.tab-count {
    display: none;
}

/* Card List Layout */
.interests-table-card {
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
}

.int-table-responsive {
    overflow: visible;
}

.int-table,
.int-table tbody {
    display: block;
    width: 100%;
}

.int-table thead {
    display: none;
}

/* Each row = a card */
.int-row {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
    position: relative;
    min-height: 86px;
}

/* Hide all cells by default, re-enable what we need */
.int-row td {
    display: none;
    padding: 0;
    border: none;
}

/* Avatar */
.int-row td:nth-child(1) {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.int-avatar {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
    position: relative;
}

/* Name / Location / Bio */
.int-row td:nth-child(2) {
    display: flex;
    flex: 1;
    min-width: 0;
    padding-right: 90px;
    /* space for top-right controls and date */
}

.int-name-loc {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.int-name {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
}

.int-location {
    font-size: 13px;
    font-weight: 600;
    color: #b30000;
}

.int-bio {
    font-size: 13px;
    color: #94a3b8;
}

/* Requested On → absolute top-right */
.int-row td:nth-child(5) {
    display: flex;
    position: absolute;
    top: 16px;
    right: 56px;
    /* increased gap from the arrow/close icons */
    align-items: center;
}

.int-abs-date {
    display: none;
}

.int-relative {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #94a3b8;
}

/* Actions → absolute, spanning full right column height */
.int-row td:nth-child(6) {
    display: flex;
    position: absolute;
    top: 12px;
    bottom: 12px;
    right: 14px;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.int-actions {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    align-items: center;
    gap: 0;
}

/* View Profile: icon-only arrow */
.btn-view-profile {
    padding: 0;
    border: none;
    background: transparent;
    color: #1e293b;
    font-size: 0;
    /* hide text */
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-view-profile svg {
    stroke: #1e293b;
    transition: transform 0.2s, stroke 0.2s;
}

.btn-view-profile:hover svg {
    stroke: #b30000;
    transform: translateX(3px);
}

/* Decline X button */
.btn-decline-int {
    width: 32px;
    height: 32px;
    border: 1.5px solid #fecdd3;
    background: #fff5f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-decline-int:hover {
    background: #fecdd3;
    border-color: #b30000;
}

.badge-accepted {
    padding: 3px 8px;
    background: #e6f4ea;
    color: #137333;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.badge-declined {
    padding: 3px 8px;
    background: #fce8e6;
    color: #b30000;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

/* Contacts Page Specifics */
.contact-avatar::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 18px;
    height: 18px;
    background-color: #ffffff;
    border: 1.5px solid #e60000;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e60000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z'/%3E%3Ccircle cx='12' cy='13' r='4'/%3E%3C/svg%3E");
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center;
}

.tab-count-badge {
    background: #ffffff;
    color: #e60000;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    margin-left: 2px;
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 767px) {

    /* Hide the normal desktop footer on mobile ONLY for logged-in pages */
    .dashboard-body-bg .footer,
    .chat-open-page .footer {
        display: none !important;
    }

    /* Add padding to body so the fixed nav doesn't hide content */
    body {
        padding-bottom: 70px !important;
    }

    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #ffffff;
        border-top: 1px solid #f1f5f9;
        box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
        z-index: 1000;
        padding: 10px 0 8px 0;
        justify-content: space-around;
        align-items: center;
    }

    .m-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        text-decoration: none;
        color: #1e293b;
        font-size: 11px;
        font-weight: 500;
        flex: 1;
        transition: color 0.2s;
    }

    .m-nav-item svg {
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .m-nav-item.active {
        color: #e60000;
    }
}

/* ==========================================================================
   Chat List
   ========================================================================== */
.chat-list-wrapper {
    margin: 24px auto;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    max-width: 1000px;
}

.chat-item {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.2s;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.chat-item:last-child {
    border-bottom: none;
}

.chat-item:hover {
    background: #f8fafc;
}

.chat-item.active-chat {
    background: var(--primary-light);
}

.chat-avatar-wrap {
    flex-shrink: 0;
    margin-right: 20px;
}

.chat-avatar-wrap .int-avatar {
    width: 48px;
    height: 48px;
    font-size: 18px;
}

.chat-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.chat-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chat-msg {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chat-meta {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    margin-left: 16px;
}

.chat-time {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
}

.chat-badge {
    background: #e60000;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* New Flat Chat List Design */
.chat-mobile-main {
    padding-top: 16px;
    padding-bottom: 24px;
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
}

.chat-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    margin-bottom: 8px;
}

.chat-page-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.chat-filter-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 500;
    color: #5e6678;
    background: transparent;
}

.chat-flat-list {
    display: flex;
    flex-direction: column;
}

.chat-flat-item {
    display: flex;
    padding: 12px 20px;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s;
}

.chat-flat-item:hover {
    background: #f8fafc;
}

.chat-avatar-wrap {
    position: relative;
    margin-right: 16px;
}

.chat-img-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.chat-online-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 14px;
    height: 14px;
    background: #22c55e;
    border: 2px solid #ffffff;
    border-radius: 50%;
}

.chat-online-dot.offline {
    background: #cbd5e1;
}

.chat-content-wrap {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
}

.chat-flat-item:last-child .chat-content-wrap {
    border-bottom: none;
}

.chat-row-top,
.chat-row-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.chat-row-top {
    margin-bottom: 4px;
}

.chat-name {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chat-time {
    font-size: 12px;
    font-weight: 500;
    color: #94a3b8;
    flex-shrink: 0;
}

.chat-msg {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    gap: 8px;
}

.chat-badge-new {
    background: #fef0f2;
    color: #e60000;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
}

.red-badge {
    background: #e60000;
    color: #ffffff;
}

.chat-pin-icon {
    color: #94a3b8;
    flex-shrink: 0;
}

/* Chat Desktop View Adjustments */
@media (min-width: 768px) {
    .chat-mobile-main {
        margin-top: 40px;
        margin-bottom: 40px;
        max-width: 800px;
        border-radius: 12px;
        border: 1px solid #f1f5f9;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .chat-header-bar {
        padding: 0 24px 16px 24px;
        margin-bottom: 8px;
    }

    .chat-flat-item {
        padding: 16px 24px;
    }
}

/* ==========================================================================
   Global Mobile Font Size Overrides (all pages, ≤ 480px)
   ========================================================================== */
@media (max-width: 480px) {

    /* Base body font */
    body {
        font-size: 13px;
    }

    /* Headings */
    h1 {
        font-size: 20px !important;
    }

    h2 {
        font-size: 17px !important;
    }

    h3 {
        font-size: 15px !important;
    }

    h4 {
        font-size: 13px !important;
    }

    h5,
    h6 {
        font-size: 12px !important;
    }

    /* Paragraphs & general text */
    p {
        font-size: 12px;
    }

    /* Navbar */
    .logo-link img {
        height: 30px !important;
    }

    .profile-btn-lbl {
        font-size: 11px;
    }

    /* Page hero / banner titles */
    .hero-title,
    .page-hero-title,
    .section-title {
        font-size: 20px !important;
    }

    .hero-subtitle,
    .section-subtitle,
    .page-hero-subtitle {
        font-size: 12px !important;
    }

    /* Buttons */
    .btn-primary,
    .btn-secondary,
    .btn,
    button {
        font-size: 12px;
    }

    /* Nav top bar */
    .top-link {
        font-size: 10px;
    }

    .top-contact-item {
        font-size: 10px;
    }

    /* Cards & tables general */
    .card,
    .interests-table-card,
    .dash-benefits-card {
        font-size: 12px;
    }

    /* Interest / profile card table */
    .int-table th,
    .int-table td {
        font-size: 11px;
    }

    .int-avatar {
        font-size: 14px;
    }

    /* Plan / billing page */
    .plan-card-title {
        font-size: 16px !important;
    }

    .plan-price {
        font-size: 26px !important;
    }

    .plan-period {
        font-size: 11px;
    }

    .plan-feature-item {
        font-size: 11px;
    }

    /* Footer */
    .copyright-text {
        font-size: 11px;
    }

    .bottom-links a {
        font-size: 11px;
    }

    /* Interests / contacts page tabs */
    .int-tab {
        font-size: 12px;
        padding: 8px 12px;
    }

    /* Mobile nav labels */
}

/* ==========================================================================
   Chat Open / Conversation View Page Styles
   ========================================================================== */
body.chat-open-page {
    font-family: 'Inter', sans-serif;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    height: 100vh !important; /* Fallback */
    height: 100dvh !important;
    overflow: hidden !important;
    padding-bottom: 0 !important;
}

/* ---- Chat App Shell ---- */
.chat-app {
    display: flex;
    flex-direction: column;
    height: 100vh; /* Fallback */
    height: 100dvh;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    background: #ffffff;
    position: relative;
}

/* ---- Chat Header ---- */
.chat-conv-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #ffffff;
    border-bottom: 1px solid #f1f5f9;
    position: sticky;
    top: 0;
    z-index: 100;
}

.chat-back-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #1e293b;
    padding: 6px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    flex-shrink: 0;
}

.chat-back-btn:hover {
    background: #f1f5f9;
}

.chat-conv-user {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.chat-conv-avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.chat-conv-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.chat-conv-status-dot {
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 11px;
    height: 11px;
    background: #22c55e;
    border: 2px solid #ffffff;
    border-radius: 50%;
}

.chat-conv-info {
    min-width: 0;
}

.chat-conv-name {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chat-conv-online {
    font-size: 12px;
    color: #22c55e;
    font-weight: 500;
}

.chat-header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.chat-hdr-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #64748b;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.chat-hdr-btn:hover {
    background: #f1f5f9;
    color: #1e293b;
}

/* ---- Messages Area ---- */
.chat-messages-area {
    flex: 1;
    overflow-y: auto;
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #f8fafc;
    scroll-behavior: smooth;
}

.chat-messages-area::-webkit-scrollbar {
    width: 4px;
}

.chat-messages-area::-webkit-scrollbar-thumb {
    background: #e2e8f0;
    border-radius: 4px;
}

/* Date divider */
.chat-date-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 8px 0;
}

.chat-date-divider::before,
.chat-date-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

.chat-date-divider span {
    font-size: 11px;
    font-weight: 600;
    color: #94a3b8;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Message bubbles */
.msg-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 75%;
}

.msg-group.received {
    align-self: flex-start;
    align-items: flex-start;
}

.msg-group.sent {
    align-self: flex-end;
    align-items: flex-end;
}

.msg-sender-row {
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

.msg-sender-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.msg-bubble-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.msg-bubble {
    padding: 10px 14px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.5;
    word-break: break-word;
}

.msg-group.received .msg-bubble {
    background: #ffffff;
    color: #1e293b;
    border-bottom-left-radius: 4px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.msg-group.sent .msg-bubble {
    background: #e60000;
    color: #ffffff;
    border-bottom-right-radius: 4px;
}

.msg-time {
    font-size: 11px;
    color: #94a3b8;
    padding: 0 4px;
}

.msg-status {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: #94a3b8;
}

.msg-status.read {
    color: #3b82f6;
}

/* Voice / Image message */
.msg-bubble.voice {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    min-width: 180px;
}

.voice-play-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #e60000;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.msg-group.sent .voice-play-btn {
    background: rgba(255, 255, 255, 0.25);
}

.voice-waveform {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 2px;
    height: 24px;
}

.voice-waveform span {
    display: inline-block;
    width: 3px;
    border-radius: 2px;
    background: currentColor;
    opacity: 0.5;
}

.voice-duration {
    font-size: 11px;
    opacity: 0.75;
}

/* ---- Typing Indicator ---- */
.typing-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
}

.typing-indicator img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.typing-dots {
    background: #ffffff;
    border-radius: 18px;
    padding: 10px 14px;
    display: flex;
    gap: 4px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.typing-dots span {
    width: 7px;
    height: 7px;
    background: #94a3b8;
    border-radius: 50%;
    animation: typingBounce 1.2s infinite;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingBounce {

    0%,
    60%,
    100% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-6px);
    }
}

/* ---- Input Area ---- */
.chat-input-area {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    padding: 12px 16px 16px 16px;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
}

.chat-input-wrap {
    flex: 1;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    background: #f1f5f9;
    border-radius: 24px;
    padding: 8px 14px;
}

.chat-input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #1e293b;
    outline: none;
    resize: none;
    max-height: 120px;
    line-height: 1.5;
}

.chat-input::placeholder {
    color: #94a3b8;
}

.chat-emoji-btn,
.chat-attach-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #94a3b8;
    padding: 2px;
    display: flex;
    transition: color 0.2s;
}

.chat-emoji-btn:hover,
.chat-attach-btn:hover {
    color: #64748b;
}

.chat-send-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #e60000;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 4px 12px rgba(230, 0, 0, 0.35);
}

.chat-send-btn:hover {
    background: #c01c3f;
    transform: scale(1.05);
}

.chat-send-btn svg {
    stroke: #ffffff;
}

/* Desktop top-bar for context - hide on very small screens */
@media (max-width: 480px) {
    .msg-group {
        max-width: 88%;
    }
}

/* ==========================================================================
   Edit Profile Page Styles
   ========================================================================== */

/* -- Page Background -- */
.ep-page {
    min-height: 100vh;
}

/* ===== MOBILE HERO & HEADER ===== */
.ep-mobile-header {
    display: none;
}

.ep-mobile-hero {
    display: none;
}

/* Photo Grid Styles (used in both desktop and mobile) */
.ep-photo-grid {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.ep-photo-item {
    flex: 1;
    aspect-ratio: 3/4;
    border-radius: 12px;
    overflow: visible;
    position: relative;
    background: #f8f9fa;
    border: 1.5px solid #f1f5f9;
}

.ep-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 11px;
    display: block;
}

.ep-photo-item.add-photo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    background: #fdfdfd;
}

.ep-add-photo-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ff5252;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(255, 82, 82, 0.3);
}

.ep-photo-item.add-photo span {
    font-size: 12px;
    font-weight: 600;
    color: #94a3b8;
}

.ep-photo-count {
    position: absolute;
    bottom: 8px;
    left: 8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== PHOTO 3-DOT MENU ===== */
.ep-photo-dots {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    opacity: 0;
    transition: opacity 0.2s, background 0.2s;
    z-index: 10;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.ep-photo-item:hover .ep-photo-dots {
    opacity: 1;
}

.ep-photo-dots:hover {
    background: #fff;
    color: #c01c3f;
}

.ep-photo-menu {
    display: none;
    position: absolute;
    top: 34px;
    left: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #f1f5f9;
    z-index: 9999;
    overflow: hidden;
    min-width: 160px;
    animation: csDropIn 0.18s ease;
}

.ep-photo-menu.open {
    display: block;
}

.ep-photo-menu-item {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 11px 14px;
    border: none;
    background: none;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #1e293b;
    cursor: pointer;
    text-align: left;
    transition: background 0.15s, color 0.15s;
    border-bottom: 1px solid #f8fafc;
}

.ep-photo-menu-item:last-child {
    border-bottom: none;
}

.ep-photo-menu-item:hover {
    background: #fff5f5;
    color: #c01c3f;
}

.ep-photo-menu-delete:hover {
    background: #fff0f0;
    color: #e53e3e;
}

/* Always show dots on mobile (no hover) */
@media (max-width: 767px) {
    .ep-photo-dots {
        opacity: 1;
    }
}


/* ===== DESKTOP LAYOUT ===== */
.ep-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 32px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 30px 24px 80px;
}

/* -- Desktop Sidebar -- */
.ep-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ep-photo-card {
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.ep-avatar-wrap {
    position: relative;
    width: 96px;
    height: 96px;
    margin: 0 auto 12px;
}

.ep-avatar-wrap img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fce4e4;
}

.ep-avatar-edit {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #c01c3f;
    color: #fff;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.ep-user-name {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2px;
}

.ep-user-id {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 14px;
}

.ep-progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #64748b;
    margin-bottom: 6px;
}

.ep-progress-track {
    height: 6px;
    background: #f1f5f9;
    border-radius: 99px;
    overflow: hidden;
}

.ep-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #e63232, #c01c3f);
    border-radius: 99px;
}

/* -- Sidebar nav tabs -- */
.ep-tabs-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.ep-tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    background: none;
    border: none;
    border-bottom: 1px solid #f1f5f9;
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s;
}

.ep-tab-btn:last-child {
    border-bottom: none;
}

.ep-tab-btn.active {
    background: #fff5f5;
    color: #c01c3f;
    font-weight: 600;
}

.ep-tab-btn svg {
    flex-shrink: 0;
    color: #94a3b8;
}

.ep-tab-btn.active svg {
    color: #c01c3f;
}

/* ===== MAIN CONTENT ===== */
.ep-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ===== SECTION CARDS ===== */
.ep-section-card {
    background: #fff;
    border-radius: 18px;
    padding: 22px 22px 26px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

/* Section header */
.ep-section-header {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 22px;
}

.ep-section-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #fce4e4;
    color: #c01c3f;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ep-section-title {
    font-size: 17px;
    font-weight: 700;
    color: #1e293b;
    font-family: 'Outfit', sans-serif;
}

/* ===== FORM FIELDS (icon-style) ===== */
.ep-field-group {
    margin-bottom: 16px;
}

.ep-field-label {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
}

.ep-field-icon {
    color: #c01c3f;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.ep-field-input,
.ep-field-select {
    flex: 1;
    border: none;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #1e293b;
    outline: none;
}

.ep-field-select {
    appearance: none;
    cursor: pointer;
}

.ep-select-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f4f5f8;
    border-radius: 12px;
    padding: 13px 14px;
    position: relative;
    border: 1.5px solid transparent;
    transition: border-color 0.2s, background 0.2s;
}

.ep-select-wrap:focus-within {
    border-color: #c01c3f;
    background: #fff;
}

.ep-field-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f4f5f8;
    border-radius: 12px;
    padding: 13px 14px;
    position: relative;
    border: 1.5px solid transparent;
    transition: border-color 0.2s, background 0.2s;
}

.ep-field-wrap:focus-within {
    border-color: #c01c3f;
    background: #fff;
}

.ep-select-wrap select {
    flex: 1;
    border: none;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #1e293b;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    min-width: 0;
}

.ep-select-chevron {
    color: #c01c3f;
    flex-shrink: 0;
    pointer-events: none;
}

.ep-field-input::placeholder {
    color: #b0b7c3;
}

/* ===== CUSTOM SELECT DROPDOWN ===== */
.ep-custom-select {
    position: relative;
    flex: 1;
    min-width: 0;
}

.ep-custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #1e293b;
    outline: none;
    gap: 8px;
}

.ep-custom-select-trigger .ep-cs-value {
    flex: 1;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ep-custom-select-trigger .ep-cs-chevron {
    color: #c01c3f;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.ep-custom-select.open .ep-cs-chevron {
    transform: rotate(180deg);
}

.ep-cs-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: -46px; /* align to start of the whole .ep-select-wrap */
    right: -14px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(192,28,63,0.08);
    z-index: 500;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    animation: csDropIn 0.18s ease;
}

@keyframes csDropIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.ep-custom-select.open .ep-cs-dropdown {
    display: block;
}

.ep-cs-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 16px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #475569;
    cursor: pointer;
    transition: background 0.15s;
    border-bottom: 1px solid #f8fafc;
}

.ep-cs-option:last-child {
    border-bottom: none;
}

.ep-cs-option:hover {
    background: #fff5f5;
    color: #c01c3f;
}

.ep-cs-option.selected {
    background: #fff0f0;
    color: #c01c3f;
    font-weight: 600;
}

.ep-cs-option .ep-cs-check {
    display: none;
    color: #c01c3f;
}

.ep-cs-option.selected .ep-cs-check {
    display: flex;
}


/* 2-col grid for desktop forms */
.ep-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
}

.ep-form-grid .ep-field-group.full {
    grid-column: 1 / -1;
}

textarea.ep-field-input {
    resize: vertical;
    min-height: 80px;
}

/* ===== SAVE BUTTON ===== */
.ep-save-bar {
    padding: 20px 0 0;
}

.ep-save-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(135deg, #e63232 0%, #c01c3f 100%);
    color: #fff;
    border: none;
    border-radius: 14px;
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 6px 18px rgba(192, 28, 63, 0.3);
}

.ep-save-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(192, 28, 63, 0.4);
}

/* ===== DESKTOP SAVE BUTTON ===== */
.ep-desktop-save {
    text-align: right;
}

.ep-desktop-save .ep-save-btn {
    width: auto;
    padding: 13px 40px;
    border-radius: 12px;
}

/* ===== MOBILE STYLES ===== */
@media (max-width: 767px) {
    .ep-mobile-hero {
        display: flex;
        flex-direction: column;
        align-items: center;
        background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
        padding: 20px 20px 60px;
        /* enough bottom padding for overlap */
        position: relative;
    }

    .ep-mobile-avatar-wrap {
        position: relative;
        width: 130px;
        height: 130px;
        margin-top: 10px;
    }

    .ep-mobile-avatar-wrap img {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid #fff;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .ep-mobile-avatar-edit {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: #ff5252;
        color: #fff;
        border: 3px solid #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .ep-layout {
        display: flex;
        flex-direction: column;
        padding: 0 16px 100px;
        margin-top: -30px;
        /* OVERLAP */
        position: relative;
        z-index: 10;
        gap: 16px;
    }

    .ep-sidebar {
        display: flex;
        gap: 16px;
    }

    .ep-sidebar .ep-tabs-card {
        display: none;
    }

    /* Hide the top part of ep-photo-card on mobile so only the photos section shows */
    .ep-photo-card .ep-avatar-wrap,
    .ep-photo-card .ep-user-name,
    .ep-photo-card .ep-user-id,
    .ep-photo-card .ep-progress-label,
    .ep-photo-card .ep-progress-track,
    .ep-photo-card hr {
        display: none;
    }

    .ep-section-card {
        border-radius: 16px;
        padding: 16px 16px 20px;
    }

    .ep-section-title {
        font-size: 16px;
    }

    .ep-form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Fixed save button on mobile */
    .ep-save-bar {
        position: fixed;
        bottom: 70px;
        left: 0;
        width: 100%;
        background: transparent;
        padding: 12px 16px 16px;
        z-index: 150;
    }

    .ep-save-btn {
        border-radius: 16px;
        padding: 16px;
        font-size: 16px;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1), 0 6px 18px rgba(192, 28, 63, 0.3);
    }
}