:root {
    --pink: #ec4899;
    --pink-dark: #db2777;
    --purple: #9333ea;
    --purple-dark: #7e22ce;
    --navy: #0f172a;
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --card-bg: rgba(255, 255, 255, 0.9);
    --border-color: rgba(236, 72, 153, 0.3);
}

.post-header-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 2px solid #ec4899;
    margin-bottom: 2rem;
}

.post-image-gallery {
    display: flex;
    padding: 1rem 0;
    overflow-x: auto;
    width: 100%;
    gap: 0.75rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Slideshow height - same as tryst */
.slideshow-height {
    height: 320px;
}

/* Custom horizontal scrollbar */
.post-image-gallery::-webkit-scrollbar {
    height: 8px;
}

.post-image-gallery::-webkit-scrollbar-track {
    background: #1f2937;
    border-radius: 10px;
}

.post-image-gallery::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ec4899, #9333ea);
    border-radius: 10px;
}

.post-image-gallery::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #db2777, #7e22ce);
}

.post-image-item {
    position: relative;
    height: 100%;
    flex-shrink: 0;
    border-radius: 0.75rem;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.post-image-item:hover {
    transform: scale(1.02);
    opacity: 0.9;
}

.post-image-item img {
    height: 100%;
    width: auto;
    max-width: none;
    object-fit: contain;
    display: block;
}

/* Email Collection Modal Styles */
.welcome-modal-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98));
    border-radius: 2rem;
    border: 2px solid rgba(236, 72, 153, 0.3);
    box-shadow: 0 25px 50px rgba(236, 72, 153, 0.3);
    overflow: hidden;
}

.welcome-modal-body {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.05), rgba(147, 51, 234, 0.05));
}

.welcome-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem;
    width: 277px;
    height: 74px;
}

.welcome-logo-text {
    width: 100%;
    height: 100%;
    border-radius: 16%;
    background: linear-gradient(135deg, #ec4899 0%, #9333ea 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.3;
    padding: 1.5rem;
    box-shadow: 0 15px 35px rgba(236, 72, 153, 0.4);
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
    font-family: 'Arial', 'Helvetica', sans-serif;
}

.welcome-logo-text::before {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 14%;
    background: rgba(255, 255, 255, 0.95);
    z-index: 0;
}

.welcome-logo-text span {
    position: relative;
    z-index: 1;
}

.welcome-title {
    background: linear-gradient(135deg, #ec4899, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    font-weight: 700;
}

.welcome-text {
    color: #1f2937;
    font-size: 1.1rem;
    line-height: 1.7;
}

.btn-welcome-enter {
    background: linear-gradient(135deg, #ec4899, #9333ea);
    border: none;
    border-radius: 50px;
    padding: 0.875rem 2rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
}

.btn-welcome-enter:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.5);
    color: white;
}

.btn-close-email-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(236, 72, 153, 0.3);
    color: #ec4899;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.25rem;
    padding: 0;
}

.btn-close-email-modal:hover {
    background: linear-gradient(135deg, #ec4899, #9333ea);
    color: white;
    border-color: #9333ea;
    transform: rotate(90deg);
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.4);
}

.email-radio-container {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.email-radio-option {
    position: relative;
    flex: 1;
    min-width: 150px;
    cursor: pointer;
}

.email-radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.email-radio-option .radio-label {
    display: block;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(236, 72, 153, 0.3);
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    color: #6b7280;
    transition: all 0.3s ease;
    user-select: none;
}

.email-radio-option:hover .radio-label {
    border-color: rgba(236, 72, 153, 0.6);
    background: rgba(236, 72, 153, 0.05);
    color: #ec4899;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.2);
}

.email-radio-option input[type="radio"]:checked + .radio-label {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(147, 51, 234, 0.1));
    border-color: #ec4899;
    color: #ec4899;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
    font-weight: 700;
}

.email-radio-option input[type="radio"]:checked + .radio-label::before {
    content: "✓";
    display: inline-block;
    margin-right: 8px;
    font-weight: 900;
    color: #ec4899;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(236, 72, 153, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(236, 72, 153, 0.6);
    }
}

@media (max-width: 575px) {
    .welcome-logo-container {
        width: 257px;
        height: 67px;
    }

    .welcome-logo-text {
        font-size: 1.25rem;
        letter-spacing: 1px;
        padding: 1.25rem;
    }

    .email-radio-container {
        flex-direction: column;
    }

    .email-radio-option {
        min-width: 100%;
    }

    .btn-close-email-modal {
        top: 0.75rem;
        right: 0.75rem;
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

/* Gallery container with dark background like tryst */
.gallery-container {
    background: #1f2937;
    border-radius: 1rem;
    padding: 0;
    overflow: hidden;
}

.gallery-container .post-image-gallery {
    padding: 1.25rem;
    margin: 0;
}

.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 0rem 0;
    justify-content: flex-start;
}

.contact-btn {
    width: 45px;
    height: 45px;
    min-width: 45px;
    padding: 0;
    border-radius: 50%;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #20BA5A;
    color: white;
}

.btn-phone {
    background: #ec4899;
    color: white;
}

.btn-phone:hover {
    background: #db2777;
    color: white;
}

.btn-message {
    background: #9333ea;
    color: white;
}

.btn-message:hover {
    background: #7e22ce;
    color: white;
}

.btn-twitter {
    background: #000000;
    color: white;
}

.btn-twitter:hover {
    background: #333333;
    color: white;
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.btn-instagram:hover {
    background: linear-gradient(45deg, #e6683c 0%, #dc2743 25%, #cc2366 50%, #bc1888 75%, #833ab4 100%);
    color: white;
}

.btn-website {
    background: #0ea5e9;
    color: white;
}

.btn-website:hover {
    background: #0284c7;
    color: white;
}

.btn-onlyfans {
    background: #00aff0;
    color: white;
}

.btn-onlyfans:hover {
    background: #0099d6;
    color: white;
}

.btn-fansly {
    background: #1fa2f1;
    color: white;
}

.btn-fansly:hover {
    background: #1890d6;
    color: white;
}

.btn-chaturbate {
    background: #f47321;
    color: white;
}

.btn-chaturbate:hover {
    background: #e06010;
    color: white;
}

.btn-myfreecams {
    background: #00cc00;
    color: white;
}

.btn-myfreecams:hover {
    background: #00b300;
    color: white;
}

.btn-report {
    background: #ef4444;
    color: white;
}

.btn-report:hover {
    background: #dc2626;
    color: white;
}

.tag-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #fce7f3 0%, #f3e8ff 100%);
    border-radius: 0.5rem;
    margin: 0.25rem;
    text-decoration: none;
    color: #374151;
    transition: all 0.3s ease;
    border: 2px solid #9333ea;
    font-weight: 500;
}

.tag-badge:hover {
    background: linear-gradient(135deg, #ec4899 0%, #9333ea 100%);
    color: white;
    border-color: #ec4899;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(236, 72, 153, 0.3);
}

.info-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 2px solid #9333ea;
    margin-bottom: 1.5rem;
}

.info-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
}

.info-card h3 i {
    color: #9333ea;
}

.info-items-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.875rem;
    background: #f9fafb;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.info-item:hover {
    background-color: #f3f4f6;
    border-color: #9333ea;
    transform: translateX(2px);
}

.info-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    word-break: break-word;
    line-height: 1.5;
}

.info-item.address-item {
    background: linear-gradient(135deg, #fce7f3 0%, #f3e8ff 100%);
    border-color: #9333ea;
}

.info-item.address-item .info-value {
    color: #7c3aed;
}

.info-value a {
    color: #9333ea;
    transition: color 0.2s ease;
}

.info-value a:hover {
    color: #ec4899;
    text-decoration: underline;
}

.description-body-main {
    font-size: 1rem;
    line-height: 1.6;
    color: #374151;
    white-space: pre-wrap;
}

.description-body-main img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

.image-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.image-popup.active {
    display: flex;
}

.image-popup img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.popup-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    padding: 1rem;
    font-size: 2rem;
    cursor: pointer;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.popup-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
}

.popup-nav.prev {
    left: 2rem;
}

.popup-nav.next {
    right: 2rem;
}

.popup-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    z-index: 10000;
}

.popup-counter {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.25rem;
}

/* Navigation Bar Styles */
.nav-bar {
    background: linear-gradient(to right, #f472b6 0%, #ec4899 25%, #db2777 50%, #a855f7 75%, #9333ea 100%);
    padding: 0.75rem 0;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
    position: sticky;
    top: 80px;
    z-index: 998;
    border-top: 2px solid rgba(255, 255, 255, 0.15);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    display: block;
    /* Always visible on desktop */
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu>li>a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    white-space: nowrap;
    position: relative;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-menu>li>a i {
    font-size: 0.9rem;
}

.nav-menu>li>a:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.nav-menu>li.has-dropdown>a::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 0.35rem;
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    opacity: 0.9;
}

.nav-menu>li.has-dropdown:hover>a::after {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: white;
    min-width: 240px;
    max-width: 320px;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.25);
    border-radius: 0.75rem;
    padding: 0.75rem 0;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    max-height: 450px;
    overflow-y: auto;
    border: 2px solid #ec4899;
}

.nav-dropdown::-webkit-scrollbar {
    width: 8px;
}

.nav-dropdown::-webkit-scrollbar-track {
    background: #fce7f3;
    border-radius: 10px;
}

.nav-dropdown::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ec4899, #9333ea);
    border-radius: 10px;
}

.nav-dropdown::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #db2777, #7e22ce);
}

.nav-menu>li:hover>.nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown li {
    margin: 0;
}

.nav-dropdown a {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.25rem;
    color: #374151;
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    font-size: 0.9rem;
}

.nav-dropdown a:hover {
    background: linear-gradient(90deg, #fce7f3 0%, #f3e8ff 100%);
    border-left-color: #ec4899;
    padding-left: 1.5rem;
    color: #ec4899;
    font-weight: 600;
}

.nav-dropdown a i {
    margin-right: 0.75rem;
    color: #ec4899;
    font-size: 0.85rem;
    width: 18px;
    text-align: center;
}

.nav-dropdown a:hover i {
    color: #9333ea;
    transform: scale(1.1);
}

/* Active Navigation Item */
.nav-menu>li.active>a {
    background: rgba(255, 255, 255, 0.35);
    color: white;
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 12px rgba(147, 51, 234, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Mobile Hamburger Button */
.mobile-nav-toggle {
    display: none;
    background: linear-gradient(135deg, #ec4899, #9333ea);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.6rem 0.9rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    z-index: 1001;
    box-shadow: 0 2px 8px rgba(236, 72, 153, 0.3);
}

.mobile-nav-toggle:hover {
    background: linear-gradient(135deg, #db2777, #7e22ce);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.4);
}

.mobile-nav-toggle.active {
    background: linear-gradient(135deg, #db2777, #7e22ce);
    box-shadow: 0 4px 12px rgba(147, 51, 234, 0.5);
}

/* Mobile Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 996;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    /* Disable clicks when not active */
}

.mobile-nav-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
    /* Enable clicks only when active */
}

/* Hide overlay on desktop */
@media (min-width: 768px) {
    .mobile-nav-overlay {
        display: none !important;
        pointer-events: none !important;
    }
}

/* Desktop Navigation - Always visible on screens >= 768px */
@media (min-width: 768px) {
    .nav-bar {
        display: block !important;
        position: sticky !important;
        max-height: none !important;
        overflow: visible !important;
        padding: 0.75rem 0 !important;
    }

    .mobile-nav-overlay {
        display: none !important;
        pointer-events: none !important;
    }
}

/* Mobile Navigation Styles */
@media (max-width: 767px) {
    .mobile-nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Overlay only shows when menu is active */
    .mobile-nav-overlay {
        display: none;
        pointer-events: none;
    }

    .mobile-nav-overlay.active {
        display: block;
        pointer-events: auto;
    }

    .nav-bar {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
        padding: 0;
        z-index: 997;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    .nav-bar.active {
        max-height: 90vh;
        padding: 1rem 0;
        overflow-y: auto;
    }

    .nav-bar::-webkit-scrollbar {
        width: 6px;
    }

    .nav-bar::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
    }

    .nav-bar::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 10px;
    }

    .nav-bar::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.5);
    }

    .nav-container {
        padding: 0px 1rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
        align-items: stretch;
    }

    .nav-menu>li {
        width: 100%;
    }

    .nav-menu>li>a {
        width: 100%;
        padding: 1rem 1.25rem;
        /* justify-content: space-between; */
        border-radius: 0.5rem;
    }

    /* Mobile Dropdown */
    .nav-dropdown {
        position: static;
        width: 100%;
        max-width: 100%;
        margin-top: 0rem;
        margin-left: 0;
        margin-bottom: 0rem;
        opacity: 0;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease, margin 0.4s ease;
        border: none;
        border-top: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: 0.75rem;
        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), inset 0 1px 3px rgba(255, 255, 255, 0.2);
        padding: 0;
    }

    .nav-menu>li.has-dropdown.active>.nav-dropdown {
        max-height: 400px;
        padding: 0.75rem 0;
        overflow-y: auto;
        overflow-x: hidden;
        margin-top: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .nav-dropdown::-webkit-scrollbar {
        width: 6px;
    }

    .nav-dropdown::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        margin: 0.5rem 0;
    }

    .nav-dropdown::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.5);
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .nav-dropdown::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.7);
    }

    .nav-menu>li.has-dropdown>a::after {
        transition: transform 0.3s ease;
        position: absolute;
        right: 18px;
    }

    .nav-menu>li.has-dropdown.active>a::after {
        transform: rotate(180deg);
    }

    .nav-dropdown a {
        padding: 0.85rem 1.5rem;
        border-left: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        color: white;
        background: transparent;
        display: flex;
        align-items: center;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .nav-dropdown a:last-child {
        border-bottom: none;
    }

    .nav-dropdown a:hover {
        padding-left: 1.75rem;
        border-left: 3px solid rgba(255, 255, 255, 0.6);
        background: rgba(255, 255, 255, 0.2);
        color: white;
        font-weight: 600;
    }

    .nav-dropdown a i {
        color: rgba(255, 255, 255, 0.95);
        margin-right: 0.75rem;
        font-size: 0.9rem;
        width: 20px;
        text-align: center;
        transition: all 0.3s ease;
    }

    .nav-dropdown a:hover i {
        color: white;
        transform: scale(1.1);
    }
}

@media (max-width: 768px) {
    .slideshow-height {
        height: 250px;
    }

    .post-image-gallery {
        gap: 0.5rem;
        padding: 0.75rem;
    }

    .contact-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 0.5rem;
    }

    .contact-btn {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 1.1rem;
    }

    .post-header-card {
        padding: 1.5rem 1rem;
    }

    .post-header-card .d-flex.justify-content-between {
        flex-direction: column;
        gap: 1rem;
    }

    .post-header-card h1 {
        font-size: 1.75rem !important;
        line-height: 1.3;
        margin-bottom: 1rem !important;
    }

    .post-header-card .badge {
        align-self: flex-start;
        font-size: 0.875rem;
        padding: 0.5rem 1rem !important;
    }

    .breadcrumb {
        font-size: 0.875rem;
        padding: 0.75rem !important;
        overflow-x: auto;
        white-space: nowrap;
    }

    .breadcrumb-item {
        display: inline-block;
    }

    .info-card {
        padding: 1.25rem !important;
        margin-bottom: 1rem !important;
    }

    .info-card h3 {
        font-size: 1.125rem !important;
        margin-bottom: 1rem !important;
    }

    .info-items-container {
        gap: 0.625rem !important;
    }

    .info-item {
        padding: 0.75rem !important;
    }

    .info-label {
        font-size: 0.7rem !important;
    }

    .info-value {
        font-size: 0.9rem !important;
    }
}

.text-size {
    font-size: 30px;
}

/* Recommended Posts Section */
.recommended-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.recommended-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.recommended-card-image {
    position: relative;
    height: 350px;
    overflow: hidden;
    flex-shrink: 0;
}

.recommended-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recommended-card:hover .recommended-card-image img {
    transform: scale(1.05);
}

.recommended-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.recommended-card:hover .recommended-overlay {
    opacity: 1;
}

.recommended-card-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.recommended-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.2s ease;
}

.recommended-card:hover .recommended-title {
    color: #ec4899;
}

.recommended-location {
    font-size: 0.875rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.recommended-location i {
    color: #ec4899;
}

@media (max-width: 767px) {
    .recommended-card-image {
        height: 250px;
    }

    .recommended-card-content {
        padding: 1rem;
    }

    .recommended-title {
        font-size: 0.9rem;
    }

    .recommended-location {
        font-size: 0.8rem;
    }
}

@media (min-width: 992px) {
    .info-items-container {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
        align-items: start;
    }

    .info-item {
        padding: 0.875rem;
        margin: 0;
    }

    /* Make the address item span both columns */
    .info-item.address-item {
        grid-column: 1 / -1;
    }
}

/* Availability Display Styles */
.availability-display-section {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.availability-display-day {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.availability-display-day:hover {
    background: #f9fafb;
    border-color: #9333ea;
    box-shadow: 0 4px 12px rgba(147, 51, 234, 0.15);
    transform: translateY(-2px);
}

.availability-display-day-label {
    font-weight: 600;
    color: #1f2937;
    flex: 1;
    font-size: 1rem;
    letter-spacing: 0.3px;
}

.availability-display-status {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.availability-status-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.availability-status-available {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.availability-status-unavailable {
    background: #e5e7eb;
    color: #6b7280;
}

.availability-status-badge i {
    font-size: 0.875rem;
}

.availability-time-slot {
    color: #4b5563;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.availability-time-slot i {
    color: #9333ea;
    font-size: 0.9rem;
}

/* Mobile Responsive Styles for Availability */
@media (max-width: 768px) {
    .availability-display-section {
        gap: 10px;
    }

    .availability-display-day {
        flex-direction: row;
        align-items: center;
        padding: 14px 16px;
        border-radius: 10px;
        gap: 12px;
    }

    .availability-display-day-label {
        font-size: 0.95rem;
        flex: 0 0 auto;
        min-width: 80px;
    }

    .availability-display-status {
        flex: 1;
        justify-content: flex-end;
        gap: 10px;
        flex-wrap: wrap;
    }

    .availability-status-badge {
        padding: 8px 14px;
        font-size: 0.7rem;
        border-radius: 20px;
    }

    .availability-time-slot {
        font-size: 0.8rem;
        flex: 1;
        min-width: 100%;
        text-align: right;
    }

    .availability-time-slot i {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .availability-display-day {
        padding: 12px 14px;
        border-radius: 10px;
        flex-direction: column;
        align-items: flex-start;
    }

    .availability-display-day-label {
        font-size: 0.9rem;
        width: 100%;
        margin-bottom: 8px;
    }

    .availability-display-status {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .availability-status-badge {
        padding: 8px 16px;
        font-size: 0.7rem;
    }

    .availability-time-slot {
        font-size: 0.8rem;
        width: 100%;
        text-align: left;
        padding-top: 8px;
        border-top: 1px solid #e5e7eb;
        margin-top: 4px;
    }
}

@media (max-width: 767px) {
    .has-dropdown.active .nav-dropdown {
        opacity: 1;
        max-height: 500px;
    }
}

@media (max-width: 767px) {
    .nav-dropdown a {
        padding: 0.85rem 1.5rem;
        border-left: none;
        color: white;
        background: transparent;
        display: flex;
        align-items: center;
        font-weight: 500;
        transition: all 0.3s ease;
    }
}

.seo-h1 {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.list-item {
    word-break: break-all;
}

.button-style {
    height: 42px !important;
    border-radius: 50px !important;
    padding: 0 1.5rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px !important;
    background: linear-gradient(135deg, #ec4899, #9333ea) !important;
}

.btn-outline-pink {
    border: 2px solid #ec4899;
    color: #ec4899;
    background: transparent;
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-pink:hover {
    background: linear-gradient(135deg, #ec4899, #9333ea);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4);
}

.btn-gradient-pink-purple {
    background: linear-gradient(135deg, var(--pink), var(--purple));
    border: none;
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    color: white;
}

.btn-gradient-pink-purple:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 25px rgba(236, 72, 153, 0.25);
    color: white;
}

/* Modal Backdrop Styles */
.modal-backdrop {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(5px);
}

/* Enhanced blur for email collection modal backdrop */
body.email-modal-open .modal-backdrop {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

/* Blur the entire page content when email modal is open */
body.email-modal-open {
    overflow: hidden;
}

body.email-modal-open > *:not(.modal):not(.modal-backdrop) {
    filter: blur(10px);
    transition: filter 0.3s ease;
}

/* Ensure modal and backdrop are not blurred */
body.email-modal-open .modal,
body.email-modal-open .modal-backdrop {
    filter: none !important;
}

/* Perfect Match Modal Styles */
.perfect-match-modal-dialog {
    max-width: 500px;
}

.perfect-match-modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    min-height: 600px;
}

.perfect-match-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../../../home/assets/images/modal-bg.png?v=2') center/cover;
}

/* Fallback if image doesn't exist */
.perfect-match-bg-image:before {
    display: none;
}

.perfect-match-bg-image::after {
    display: none;
}

.btn-close-perfect-match {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgb(255 255 255 / 7%);
    backdrop-filter: blur(15px);
    border: 1px solid #ffffff57;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1051;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.25rem;
    padding: 0;
}

.btn-close-perfect-match:hover {
    transform: rotate(90deg);
}

.perfect-match-modal-body {
    position: relative;
    z-index: 1;
    padding: 3rem 2.5rem;
    color: white;
}

.perfect-match-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 2rem;
}

.perfect-match-logo-img {
    max-width: 220px;
    height: auto;
    display: block;
}

.perfect-match-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.perfect-match-subheading {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ec4899, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.perfect-match-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.perfect-match-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.perfect-match-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.perfect-match-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.perfect-match-input {
    width: 100%;
    padding: 1rem 1.25rem;
    background: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    color: #1f2937;
    outline: none;
    transition: all 0.3s ease;
}

.perfect-match-input:focus {
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.3);
}

.perfect-match-input::placeholder {
    color: #9ca3af;
}

.perfect-match-radio-group {
    display: flex;
    gap: 1rem;
}

.perfect-match-radio-option {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: white;
    border: 2px solid rgba(156, 163, 175, 0.5);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.perfect-match-radio-option input[type="radio"] {
    display: none;
}

.perfect-match-radio-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid rgba(156, 163, 175, 0.8);
    background: rgba(156, 163, 175, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
}

.perfect-match-radio-check::after {
    content: "✓";
    color: rgba(107, 114, 128, 0.8);
    font-size: 0.75rem;
    font-weight: bold;
    opacity: 0.6;
}

.perfect-match-radio-text {
    color: rgba(156, 163, 175, 0.9);
    font-weight: 500;
    transition: all 0.3s ease;
}

.perfect-match-radio-selected {
    background: #FDF2F8 !important;
    border-color: #ec4899 !important;
}

.perfect-match-radio-selected .perfect-match-radio-check {
    background: #ec4899;
    border-color: #ec4899;
}

.perfect-match-radio-selected .perfect-match-radio-check::after {
    content: "✓";
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    opacity: 1;
}

.perfect-match-radio-selected .perfect-match-radio-text {
    color: #ec4899;
}

.perfect-match-radio-option:hover {
    border-color: rgba(236, 72, 153, 0.6);
    background: rgba(236, 72, 153, 0.1);
}

.perfect-match-submit-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    background: #475569;
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.perfect-match-submit-btn:hover {
    background: #334155;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(71, 85, 105, 0.4);
}

.perfect-match-submit-btn i {
    font-size: 1.1rem;
}

@media (max-width: 575px) {
    .perfect-match-modal-body {
        padding: 2rem 1.5rem;
    }

    .perfect-match-heading,
    .perfect-match-subheading {
        font-size: 1.75rem;
    }

    .perfect-match-radio-group {
        flex-direction: column;
    }

    .btn-close-perfect-match {
        top: 0.75rem;
        right: 0.75rem;
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}