
  /* Show desktop navigation only on desktop screens */
  @media (min-width: 992px) {
    .navbar-collapse {
      display: flex !important;
    }
    .custom_menu-btn {
      display: none !important;
    }
  }

  /* Hide desktop navigation and show hamburger menu on mobile */
  @media (max-width: 991px) {
    .navbar-collapse {
      display: none !important;
    }
    .custom_menu-btn {
      display: block !important;
    }
  }




    /* Profile Card Styles */
    .profile-card {
        border: 1px solid #e0e0e0;
        border-radius: 16px;
        padding: 0;
        margin-bottom: 2px;
        background: white;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        overflow: hidden;
        position: relative;
    }

    .profile-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 28px rgba(0,0,0,0.15);
    }

    .profile-img-container {
        position: relative;
        overflow: hidden;
        border-radius: 16px 16px 0 0;
    }

    .profile-img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        margin-bottom: 0;
        transition: transform 0.3s ease;
    }

    .profile-card:hover .profile-img {
        transform: scale(1.05);
    }

    .profile-placeholder {
        width: 100%;
        height: 250px;
        background: #f8f9fa;
        border-radius: 16px 16px 0 0;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0;
    }

    .profile-placeholder i {
        font-size: 48px;
        color: #6c757d;
    }

    .profile-info {
        padding: 20px;
    }

    .profile-info h3 {
        margin: 0 0 8px 0;
        color: #333;
        font-size: 1.2em;
        font-weight: 600;
    }

    .location {
        color: #666;
        font-size: 0.9em;
        margin-bottom: 10px;
        font-weight: 500;
    }

    .bio {
        color: #777;
        font-size: 0.9em;
        margin-bottom: 12px;
        line-height: 1.5;
    }

    .profile-meta {
        margin-bottom: 12px;
    }

    .status.active {
        background: #28a745;
        color: white;
        padding: 4px 10px;
        border-radius: 12px;
        font-size: 0.8em;
        display: inline-block;
    }

    .profile-actions {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }

    .whatsapp-btn, .instagram-btn {
        padding: 8px 16px;
        border-radius: 8px;
        text-decoration: none;
        font-size: 0.85em;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        transition: all 0.3s ease;
        font-weight: 500;
    }

    .whatsapp-btn {
        background: #25D366;
        color: white;
    }

    .whatsapp-btn:hover {
        background: #128C7E;
        color: white;
        text-decoration: none;
        transform: translateY(-1px);
    }

    .instagram-btn {
        background: #E4405F;
        color: white;
    }

    .instagram-btn:hover {
        background: #C13584;
        color: white;
        text-decoration: none;
        transform: translateY(-1px);
    }

    .no-profiles {
        text-align: center;
        padding: 40px;
        color: #666;
        background: #f8f9fa;
        border-radius: 16px;
        margin: 20px 0;
    }

    .filter-item {
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        color: inherit;
        display: inline-block;
        padding: 8px 16px;
        margin: 4px;
        border: 1px solid #ddd;
        border-radius: 20px;
        background: white;
    }

    .filter-item.active {
        background: #007bff;
        color: white;
        border-color: #007bff;
    }

    .filter-item:hover {
        background: #e9ecef;
        text-decoration: none;
        color: inherit;
    }

    .filter-item.active:hover {
        background: #0056b3;
        color: white;
    }

    .filters-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        padding: 8px;
        background: #f8f9fa;
        border-radius: 12px;
        margin: 10px 0;
    }

    /* Escort Type Badge - Positioned on top right of image */
    .escort-type-badge {
        display: inline-block;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 0.75em;
        font-weight: bold;
        position: absolute;
        top: 12px;
        right: 12px;
        z-index: 10;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }

    .escort-type-badge.regular {
        background: #000000;
        color: white;
    }

    .escort-type-badge.prime {
        background: #FF0000;
        color: white;
    }

    .escort-type-badge.vip {
        background: #ffc107;
        color: black;
    }

    .overlay {
    background-color: #000000 !important;
}

/* form css */

.form-container {
    max-width: 500px;
    margin: 2rem auto;
    padding: clamp(1.5rem, 5vw, 2.5rem);
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
    color: #333;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1.5px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: #fafbfc;
}

.form-control:focus {
    border-color: #FF5A5F;
    box-shadow: 0 0 0 3px rgba(255, 90, 95, 0.15);
    background: #ffffff;
    outline: none;
}

.form-control:hover {
    border-color: #c8d1d9;
}

.btn-submit {
    background: #FF5A5F;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    transition: all 0.2s ease;
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    background: #e04a50;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 90, 95, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

.messages {
    margin: 1.5rem 0;
}

.alert {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    border: 1px solid transparent;
}

.alert-success {
    background: #f0f9f4;
    color: #0d6832;
    border-color: #b8e6cb;
}

.alert-error {
    background: #fef0f1;
    color: #c53030;
    border-color: #fed7d7;
}

.error-list {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    list-style: none;
    padding-left: 0;
}

.error-list li {
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
}

.error-list li::before {
    content: "•";
    color: #dc3545;
    margin-right: 0.5rem;
}

.required::after {
    content: " *";
    color: #dc3545;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .form-container {
        margin: 1rem;
        padding: 1.25rem;
        border-radius: 10px;
    }

    .form-control {
        padding: 0.75rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .btn-submit {
        padding: 0.875rem 1.5rem;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }
}

/* Desktop enhancements */
@media (min-width: 1024px) {
    .form-container {
        max-width: 480px;
    }

    .form-control {
        padding: 1rem 1.25rem;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .form-control,
    .btn-submit {
        transition: none;
    }
}

/* Focus visible for keyboard navigation */
.btn-submit:focus-visible,
.form-control:focus-visible {
    outline: 2px solid #FF5A5F;
    outline-offset: 2px;
}

/* Loading state */
.btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

    /* vlog detail css */
    .vlog-detail-header {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 80px 0 40px;
        margin-bottom: 40px;
    }

    .vlog-title {
        font-size: 2.5em;
        font-weight: 700;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .vlog-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        align-items: center;
        margin-bottom: 20px;
        font-size: 0.95em;
    }

    .vlog-meta-item {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .vlog-category {
        background: rgba(255,255,255,0.2);
        padding: 5px 15px;
        border-radius: 20px;
        font-weight: 600;
    }

    .vlog-content {
        font-size: 1.1em;
        line-height: 1.8;
        color: #333;
    }

    .vlog-content img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        margin: 30px 0;
    }

    .vlog-content h2, .vlog-content h3 {
        margin-top: 40px;
        margin-bottom: 20px;
        color: #333;
    }

    .vlog-content p {
        margin-bottom: 20px;
    }

    .vlog-content blockquote {
        border-left: 4px solid #FF5A5F;
        padding-left: 20px;
        margin: 30px 0;
        font-style: italic;
        color: #666;
    }

    .related-vlogs {
        margin-top: 60px;
        padding-top: 40px;
        border-top: 1px solid #e0e0e0;
    }

    .related-vlog-card {
        border: 1px solid #e0e0e0;
        border-radius: 10px;
        overflow: hidden;
        transition: all 0.3s ease;
        margin-bottom: 20px;
    }

    .related-vlog-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .related-vlog-image {
        width: 100%;
        height: 150px;
        object-fit: cover;
    }

    .related-vlog-content {
        padding: 15px;
    }

    .related-vlog-title {
        font-size: 1.1em;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .related-vlog-title a {
        color: #333;
        text-decoration: none;
    }

    .related-vlog-title a:hover {
        color: #FF5A5F;
    }

    .author-bio {
        background: #f8f9fa;
        padding: 30px;
        border-radius: 10px;
        margin: 40px 0;
    }

    .social-share {
        display: flex;
        gap: 10px;
        margin: 30px 0;
    }

    .share-btn {
        padding: 8px 15px;
        border-radius: 5px;
        color: white;
        text-decoration: none;
        font-size: 0.9em;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .share-facebook { background: #3b5998; }
    .share-twitter { background: #1da1f2; }
    .share-whatsapp { background: #25d366; }
    .share-linkedin { background: #0077b5; }


/* modal image viewer */

    .clickable-image {
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .clickable-image:hover {
      transform: scale(1.02);
    }

    .modal {
      animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    .modal-content {
      animation: slideIn 0.3s ease;
    }

    @keyframes slideIn {
      from { transform: translateY(-60%); opacity: 0; }
      to { transform: translateY(-50%); opacity: 1; }
    }

    .close:hover {
      color: #ccc;
    }

    /* Responsive design for modal */
    @media (max-width: 768px) {
      .modal-content {
        max-width: 95%;
        max-height: 95%;
      }

      .modal-body {
        flex-direction: column;
      }

      .modal-image-container img {
        max-height: 300px;
      }
    }


/*footer */
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

    footer a:hover {
        color: #FF0000 !important;
    }

    @media (max-width: 768px) {
        .container {
            padding: 0 10px;
        }

        footer .container > div:first-child {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        footer .container > div:last-child > div {
            flex-direction: column;
            gap: 10px;
            text-align: center;
        }
    }
