.single-escort-page {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 10px;
    background: #fff;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #000;
}

.single-escort-page.compact {
    padding: 0 5px;
    font-size: 12px;
}

.single-escort-page.stretch {
    max-width: 100%;
    padding: 0 20px;
}

/* Animation Keyframes */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

[data-animate="fade-in"] {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

/* Full-width Header */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FFFFFF;
    padding: 10px 20px;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.compact header {
    padding: 5px 10px;
}

.stretch header {
    padding: 15px 30px;
}

/* Logo */
.logo h1 {
    color: #1A3552;
    font-size: 24px;
    margin: 0;
    transition: color 0.3s ease;
}

.compact .logo h1 {
    font-size: 20px;
}

.stretch .logo h1 {
    font-size: 28px;
}

.logo h1:hover {
    color: #6A0DAD;
}

/* Search Bar & Advertiser Image */
.search-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.compact .search-container {
    gap: 10px;
}

.stretch .search-container {
    gap: 20px;
}

.search-bar {
    display: flex;
    align-items: center;
}

.search-bar input {
    padding: 8px;
    width: 200px;
    border: 1px solid #6A0DAD;
    border-radius: 5px 0 0 5px;
    background: #FFFFFF;
    color: #333333;
    outline: none;
    transition: border-color 0.3s ease;
}

.compact .search-bar input {
    width: 150px;
    padding: 6px;
}

.stretch .search-bar input {
    width: 250px;
    padding: 10px;
}

.search-bar input:focus {
    border-color: #FFD700;
}

.search-bar button {
    padding: 8px 15px;
    background: #6A0DAD;
    color: #FFFFFF;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.compact .search-bar button {
    padding: 6px 10px;
}

.stretch .search-bar button {
    padding: 10px 20px;
}

.search-bar button:hover {
    background: #FFD700;
    color: #333333;
}

.advertiser-banner img {
    width: 270px;
    height: 46px;
    border-radius: 5px;
    border: 1px solid #FFD700;
    object-fit: cover;
}

.compact .advertiser-banner img {
    width: 200px;
    height: 34px;
}

.stretch .advertiser-banner img {
    width: 340px;
    height: 58px;
}

/* Authentication Buttons */
.auth-buttons button {
    padding: 8px 15px;
    border: 1px solid #6A0DAD;
    cursor: pointer;
    color: #6A0DAD;
    background: transparent;
    font-size: 14px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.compact .auth-buttons button {
    padding: 6px 10px;
    font-size: 12px;
}

.stretch .auth-buttons button {
    padding: 10px 20px;
    font-size: 16px;
}

.auth-buttons button:hover {
    background: #FFD700;
    color: #333333;
}

#registerBtn {
    background: #6A0DAD;
    color: #FFFFFF;
    border: none;
}

#registerBtn:hover {
    background: #FFD700;
    color: #333333;
}

/* Full-width Navigation Menu */
.main-nav {
    background: #FFFFFF;
    padding: 10px 0;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid #E0E0E0;
}

.compact .main-nav {
    padding: 5px 0;
}

.stretch .main-nav {
    padding: 15px 0;
}

.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.compact .main-nav ul {
    gap: 10px;
}

.stretch .main-nav ul {
    gap: 30px;
}

.main-nav ul li a {
    color: #6A0DAD;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.compact .main-nav ul li a {
    padding: 5px 10px;
}

.stretch .main-nav ul li a {
    padding: 12px 20px;
}

.main-nav ul li a:hover {
    color: #FFD700;
    transform: scale(1.1);
}

.breadcrumb {
    margin-bottom: 15px;
    font-size: 12px;
}

.compact .breadcrumb {
    margin-bottom: 10px;
    font-size: 10px;
}

.stretch .breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
}

.breadcrumb a {
    color: #000;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: #666;
}

.banner-section {
    margin: 20px 0;
    padding: 10px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.compact .banner-section {
    margin: 10px 0;
    padding: 5px;
}

.stretch .banner-section {
    margin: 30px 0;
    padding: 15px;
}

.banner-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.compact .banner-grid {
    gap: 5px;
}

.stretch .banner-grid {
    gap: 15px;
}

.banner-image {
    width: 270px;
    height: 46px;
    object-fit: cover;
    border: 1px solid #FFD700;
    border-radius: 5px;
}

.compact .banner-image {
    width: 200px;
    height: 34px;
}

.stretch .banner-image {
    width: 340px;
    height: 58px;
}

/* Profile Header */
.profile-header {
    margin-bottom: 20px;
    text-align: center;
}

.compact .profile-header {
    margin-bottom: 15px;
}

.stretch .profile-header {
    margin-bottom: 25px;
}

.profile-header h1 {
    font-size: 28px;
    font-weight: bold;
    color: #6A0DAD;
    margin-bottom: 5px;
}

.compact .profile-header h1 {
    font-size: 22px;
}

.stretch .profile-header h1 {
    font-size: 32px;
}

.escort-username {
    font-size: 16px;
    color: #666;
}

.compact .escort-username {
    font-size: 14px;
}

.stretch .escort-username {
    font-size: 18px;
}

/* Main Container */
.escort-profile-container {
    display: flex;
    gap: 20px;
}

.compact .escort-profile-container {
    gap: 10px;
}

.stretch .escort-profile-container {
    gap: 30px;
}

/* Left Sidebar */
.left-sidebar {
    width: 300px;
    flex-shrink: 0;
}

.compact .left-sidebar {
    width: 250px;
}

.stretch .left-sidebar {
    width: 350px;
}

.escort-images .main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.compact .escort-images .main-image img {
    height: 300px;
}

.stretch .escort-images .main-image img {
    height: 450px;
}

.additional-images {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.compact .additional-images {
    margin-top: 5px;
    gap: 3px;
}

.stretch .additional-images {
    margin-top: 15px;
    gap: 8px;
}

.additional-images .thumbnail {
    width: 75px;
    height: 75px;
    object-fit: cover;
    border: 1px solid #ddd;
    border-radius: 3px;
    transition: transform 0.2s;
}

.compact .additional-images .thumbnail {
    width: 60px;
    height: 60px;
}

.stretch .additional-images .thumbnail {
    width: 90px;
    height: 90px;
}

.additional-images .thumbnail:hover {
    transform: scale(1.05);
}

.contact-info {
    margin-top: 15px;
    padding: 10px;
    border: 1px solid #ddd;
    background: #f9f9f9;
    border-radius: 5px;
}

.compact .contact-info {
    margin-top: 10px;
    padding: 8px;
}

.stretch .contact-info {
    margin-top: 20px;
    padding: 15px;
}

.contact-info p {
    margin: 5px 0;
    font-size: 14px;
}

.compact .contact-info p {
    font-size: 12px;
}

.stretch .contact-info p {
    font-size: 16px;
}

.contact-info strong {
    font-weight: bold;
}

/* Middle Content */
.escort-content {
    flex: 1;
    max-width: 600px;
}

.compact .escort-content {
    max-width: 500px;
}

.stretch .escort-content {
    max-width: 700px;
}

.escort-content section {
    margin-bottom: 30px;
    padding: 15px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 5px;
}

.compact .escort-content section {
    margin-bottom: 20px;
    padding: 10px;
}

.stretch .escort-content section {
    margin-bottom: 40px;
    padding: 20px;
}

.escort-content h2 {
    font-size: 18px;
    font-weight: bold;
    color: #6A0DAD;
    margin-bottom: 10px;
    border-bottom: 2px solid #6A0DAD;
    padding-bottom: 5px;
}

.compact .escort-content h2 {
    font-size: 16px;
    margin-bottom: 8px;
}

.stretch .escort-content h2 {
    font-size: 20px;
    margin-bottom: 12px;
}

.profile-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.compact .profile-details-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.stretch .profile-details-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.profile-detail-cell {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.compact .profile-detail-cell {
    padding: 8px;
}

.stretch .profile-detail-cell {
    padding: 12px;
}

.profile-detail-cell .label {
    font-weight: bold;
    color: #1A3552;
    font-size: 16px;
}

.compact .profile-detail-cell .label {
    font-size: 14px;
}

.stretch .profile-detail-cell .label {
    font-size: 18px;
}

.profile-detail-cell .value {
    color: #333;
    font-size: 16px;
    text-align: right;
}

.compact .profile-detail-cell .value {
    font-size: 14px;
}

.stretch .profile-detail-cell .value {
    font-size: 18px;
}

.rates-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.compact .rates-table {
    margin-top: 5px;
}

.stretch .rates-table {
    margin-top: 15px;
}

.rates-table th,
.rates-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

.compact .rates-table th,
.compact .rates-table td {
    padding: 6px;
}

.stretch .rates-table th,
.stretch .rates-table td {
    padding: 10px;
}

.rates-table th {
    background: #6A0DAD;
    color: #fff;
    font-weight: bold;
}

.profile-services ul {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}

.compact .profile-services ul {
    padding-left: 15px;
}

.stretch .profile-services ul {
    padding-left: 25px;
}

.profile-services ul li {
    margin: 5px 0;
}

.profile-about p {
    margin: 5px 0;
}

/* Tour Plans */
.profile-tour-plans {
    margin-bottom: 40px;
}

.compact .profile-tour-plans {
    margin-bottom: 30px;
}

.stretch .profile-tour-plans {
    margin-bottom: 50px;
}

.profile-tour-plans h2 {
    font-size: 24px;
    color: #1A3552;
    margin-bottom: 20px;
    border-bottom: 2px solid #6A0DAD;
    padding-bottom: 10px;
}

.compact .profile-tour-plans h2 {
    font-size: 20px;
    margin-bottom: 15px;
}

.stretch .profile-tour-plans h2 {
    font-size: 28px;
    margin-bottom: 25px;
}

.profile-tour-plans ul {
    list-style: none;
    padding: 0;
}

.profile-tour-plans ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

.compact .profile-tour-plans ul li {
    margin-bottom: 8px;
    font-size: 14px;
}

.stretch .profile-tour-plans ul li {
    margin-bottom: 12px;
    font-size: 18px;
}

.profile-tour-plans ul li strong {
    display: inline-block;
    width: 150px;
    font-weight: bold;
}

.compact .profile-tour-plans ul li strong {
    width: 120px;
}

.stretch .profile-tour-plans ul li strong {
    width: 180px;
}

.profile-tour-plans p {
    font-size: 16px;
    color: #666;
}

.compact .profile-tour-plans p {
    font-size: 14px;
}

.stretch .profile-tour-plans p {
    font-size: 18px;
}

/* Right Sidebar */
.right-sidebar {
    flex: 1;
    max-width: 300px;
}

.compact .right-sidebar {
    max-width: 250px;
}

.stretch .right-sidebar {
    max-width: 350px;
}

.right-sidebar .sidebar-section {
    background: #FFFFFF;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.compact .right-sidebar .sidebar-section {
    padding: 8px;
    margin-bottom: 5px;
}

.stretch .right-sidebar .sidebar-section {
    padding: 15px;
    margin-bottom: 15px;
}

.right-sidebar .sidebar-section.trending {
    background: #F9F9F9;
    border: 1px solid #E0E0E0;
}

.right-sidebar .sidebar-section h3 {
    font-size: 16px;
    color: #1A3552;
    margin-bottom: 5px;
}

.compact .right-sidebar .sidebar-section h3 {
    font-size: 14px;
}

.stretch .right-sidebar .sidebar-section h3 {
    font-size: 18px;
}

.right-sidebar .sidebar-section .date {
    font-size: 10px;
    color: #666666;
    margin-bottom: 5px;
}

.compact .right-sidebar .sidebar-section .date {
    font-size: 8px;
}

.stretch .right-sidebar .sidebar-section .date {
    font-size: 12px;
}

.right-sidebar .sidebar-images {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.compact .right-sidebar .sidebar-images {
    gap: 3px;
}

.stretch .right-sidebar .sidebar-images {
    gap: 8px;
}

.right-sidebar .sidebar-item .image-box {
    width: 147px;
    height: 200px;
    overflow: hidden;
    border-radius: 5px;
    border: 1px solid #6A0DAD;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.compact .right-sidebar .sidebar-item .image-box {
    width: 120px;
    height: 160px;
}

.stretch .right-sidebar .sidebar-item .image-box {
    width: 180px;
    height: 240px;
}

.right-sidebar .sidebar-item .image-box:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.right-sidebar .sidebar-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.right-sidebar .sidebar-item p {
    margin: 2px 0 0;
    font-size: 12px;
    color: #333333;
}

.compact .right-sidebar .sidebar-item p {
    font-size: 10px;
}

.stretch .right-sidebar .sidebar-item p {
    font-size: 14px;
}

.right-sidebar .sidebar-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.right-sidebar .recommended-links img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
    border: 1px solid #6A0DAD;
    transition: transform 0.3s ease;
}

.compact .right-sidebar .recommended-links img {
    margin-bottom: 5px;
}

.stretch .right-sidebar .recommended-links img {
    margin-bottom: 15px;
}

.right-sidebar .recommended-links img:hover {
    transform: scale(1.05);
}

/* Similar Profiles Section */
.similar-profiles {
    margin-top: 30px;
    padding: 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 5px;
}

.compact .similar-profiles {
    margin-top: 20px;
    padding: 15px;
}

.stretch .similar-profiles {
    margin-top: 40px;
    padding: 25px;
}

.similar-profiles h2 {
    font-size: 18px;
    font-weight: bold;
    color: #6A0DAD;
    margin-bottom: 15px;
    border-bottom: 2px solid #6A0DAD;
    padding-bottom: 5px;
}

.compact .similar-profiles h2 {
    font-size: 16px;
    margin-bottom: 10px;
}

.stretch .similar-profiles h2 {
    font-size: 20px;
    margin-bottom: 20px;
}

.similar-profiles-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.compact .similar-profiles-grid {
    gap: 10px;
}

.stretch .similar-profiles-grid {
    gap: 30px;
}

.similar-profile-card {
    flex: 0 0 200px;
    text-align: center;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.compact .similar-profile-card {
    flex: 0 0 160px;
    padding: 8px;
}

.stretch .similar-profile-card {
    flex: 0 0 240px;
    padding: 12px;
}

.similar-profile-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.similar-profile-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.compact .similar-profile-card img {
    height: 200px;
}

.stretch .similar-profile-card img {
    height: 300px;
}

.similar-profile-card h3 {
    font-size: 16px;
    font-weight: bold;
    margin: 5px 0 0;
    color: #333;
}

.compact .similar-profile-card h3 {
    font-size: 14px;
}

.stretch .similar-profile-card h3 {
    font-size: 18px;
}

.similar-profile-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.compact .similar-profile-card p {
    font-size: 12px;
}

.stretch .similar-profile-card p {
    font-size: 16px;
}

.similar-profile-card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #FFFFFF;
    padding: 40px 20px;
    width: 100%;
    box-sizing: border-box;
}

.compact .footer {
    padding: 30px 15px;
}

.stretch .footer {
    padding: 50px 25px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.compact .footer-container {
    gap: 15px;
}

.stretch .footer-container {
    max-width: 1400px;
    gap: 25px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.compact .footer-column {
    min-width: 160px;
}

.stretch .footer-column {
    min-width: 240px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.compact .footer-column h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.stretch .footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
}

.compact .footer-column p {
    font-size: 12px;
}

.stretch .footer-column p {
    font-size: 16px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.compact .footer-column ul li {
    margin-bottom: 8px;
}

.stretch .footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.compact .footer-column ul li a {
    font-size: 12px;
}

.stretch .footer-column ul li a {
    font-size: 16px;
}

.footer-column ul li a:hover {
    color: #FFD700;
}

.footer-column ul li a.highlight {
    color: #FF0000;
}

.footer-column ul li a.highlight:hover {
    color: #FFD700;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.compact .footer-bottom {
    margin-top: 20px;
    padding-top: 15px;
}

.stretch .footer-bottom {
    margin-top: 40px;
    padding-top: 25px;
}

.footer-bottom p {
    font-size: 12px;
    margin: 5px 0;
    color: #FFFFFF;
}

.compact .footer-bottom p {
    font-size: 10px;
}

.stretch .footer-bottom p {
    font-size: 14px;
}

.footer-bottom a.cookie-link {
    color: #FFFFFF;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-bottom a.cookie-link:hover {
    color: #FFD700;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .escort-profile-container {
        flex-wrap: wrap;
    }
    .escort-content,
    .right-sidebar {
        flex: 100%;
        max-width: 100%;
    }
    .right-sidebar {
        margin-top: 20px;
    }
    .similar-profiles-grid {
        flex-wrap: wrap;
    }
    .profile-details-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .left-sidebar {
        width: 100%;
        max-width: 100%;
    }
    .escort-images .main-image img {
        height: 300px;
    }
    .similar-profiles-grid {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
    }
    .similar-profile-card {
        flex: 0 0 180px;
    }
    .similar-profile-card img {
        height: 210px;
    }
}