/*
Theme Name: PRYVAT - V1
Description: Dating classifieds theme for Barra da Tijuca escort directory
Version: 1.1
Author: Your Name
*/

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #1a1a1a;
    color: #c0c0c0;
    font-size: 20px;
    line-height: 1.6;
}

/* Header Styles */
.site-header {
    background-color: #2d2d2d;
    padding: 20px 0;
    border-bottom: 3px solid #8b0000;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.logo {
    font-family: 'Bodoni Moda', serif;
    font-weight: 700;
    font-size: 36px;
    color: #8b0000;
    text-decoration: none;
}

.header-icons {
    display: flex;
    gap: 20px;
}

.header-icon {
    color: #c0c0c0;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid #8b0000;
    border-radius: 25px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.header-icon:hover {
    background-color: #8b0000;
    color: white;
}


/* Ads Grid */


.ads-grid {
    padding: 50px 0;
}

.ads-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 30px;
}

.ad-card {
    background-color: #2d2d2d;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.ad-card:hover {
    transform: translateY(-5px);
    border-color: #8b0000;
}

.ad-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.ad-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background-color: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
}

.ad-details {
    padding: 20px;
}

.ad-details h3 {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    color: #8b0000;
    margin-bottom: 10px;
}

.ad-details p {
    font-size: 16px;
    color: #c0c0c0;
    margin-bottom: 15px;
}

.ad-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.ad-actions button {
    background: none;
    border: 1px solid #8b0000;
    color: #c0c0c0;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.meet-btn {
    display: block;
    background-color: #8b0000;
    color: white;
    text-decoration: none;
    padding: 12px;
    text-align: center;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.meet-btn:hover {
    background-color: #a50000;
}

/* Desktop - reduce gap between cards */
@media (min-width: 768px) {
    .ads-grid .ads-container {
        gap: 10px;
    }
    
    .ad-card {
        margin: 5px;
    }
    
    /* If using grid layout */
    .ads-container {
        grid-gap: 10px;
    }
}

/* Keep mobile as is - no changes to mobile */
@media (max-width: 767px) {
    /* Your existing mobile styles remain unchanged */
}

/* Pagination */
.pagination {
    text-align: center;
    padding: 30px 0;
}

.pagination a, .pagination span {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    color: #c0c0c0;
    text-decoration: none;
    border: 1px solid #8b0000;
    border-radius: 5px;
}

.pagination .current {
    background-color: #8b0000;
    color: white;
}

/* Footer */
.site-footer {
    background-color: #2d2d2d;
    border-top: 3px solid #8b0000;
    padding: 50px 0 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-widgets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 30px;
}

.footer-widgets h3 {
    font-family: 'Cinzel', serif;
    color: #8b0000;
    font-size: 24px;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    background-color: #1a1a1a;
    border: 2px solid #8b0000;
    color: #c0c0c0;
    border-radius: 5px;
}

.newsletter-form button {
    background-color: #8b0000;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.links-widget ul {
    list-style: none;
}

.links-widget li {
    margin-bottom: 10px;
}

.links-widget a {
    color: #c0c0c0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.links-widget a:hover {
    color: #8b0000;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #888;
}

.footer-bottom a {
    color: #8b0000;
    text-decoration: none;
}

/* Single Ad Page Styles */
.single-ad {
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 30px;
}

.ad-header {
    text-align: center;
    margin-bottom: 40px;
}

.ad-header h1 {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    color: #8b0000;
    margin-bottom: 15px;
}

.ad-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ad-meta span {
    font-size: 18px;
    color: #c0c0c0;
}

.badge {
    background-color: #8b0000;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
}

.badge.verified {
    background-color: #00a500;
}

.badge.featured {
    background-color: #ffa500;
}

/* Photo Gallery */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

/* Content Section */
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.about-facts h2, .about-bio h2 {
    font-family: 'Cinzel', serif;
    color: #8b0000;
    font-size: 28px;
    margin-bottom: 20px;
}

.facts-list {
    list-style: none;
}

.facts-list li {
    padding: 10px 0;
    border-bottom: 1px solid #444;
    font-size: 16px;
}

.facts-list strong {
    color: #8b0000;
}

.bio-content {
    font-size: 18px;
    line-height: 1.8;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    min-width: 150px;
    transition: all 0.3s ease;
}

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

.cta-btn.sms {
    background-color: #0084ff;
    color: white;
}

.cta-btn.video {
    background-color: #8b0000;
    color: white;
}

.cta-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Location Map */
.location-map {
    text-align: center;
}

.location-map h2 {
    font-family: 'Cinzel', serif;
    color: #8b0000;
    font-size: 28px;
    margin-bottom: 20px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #8b0000;
}

/* Static Pages */
.static-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 30px;
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    color: #8b0000;
}

.page-content {
    font-size: 18px;
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .ads-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .ads-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .photo-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-widgets {
        grid-template-columns: 1fr;
    }
    
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .ads-container {
        grid-template-columns: 1fr;
    }
    
    .photo-gallery {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}



/* Ads Grid */
.ads-grid {
    padding: 50px 0;
}

.ads-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 30px;
}

.ad-card {
    background-color: #2d2d2d;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.ad-card:hover {
    transform: translateY(-5px);
    border-color: #8b0000;
}

.ad-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.ad-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background-color: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
}

.ad-details {
    padding: 20px;
}

.ad-details h3 {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    color: #8b0000;
    margin-bottom: 10px;
}

.ad-details p {
    font-size: 16px;
    color: #c0c0c0;
    margin-bottom: 15px;
}

.ad-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.ad-actions button {
    background: none;
    border: 1px solid #8b0000;
    color: #c0c0c0;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.meet-btn {
    display: block;
    background-color: #8b0000;
    color: white;
    text-decoration: none;
    padding: 12px;
    text-align: center;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.meet-btn:hover {
    background-color: #a50000;
}

/* Pagination */
.pagination {
    text-align: center;
    padding: 30px 0;
}

.pagination a, .pagination span {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    color: #c0c0c0;
    text-decoration: none;
    border: 1px solid #8b0000;
    border-radius: 5px;
}

.pagination .current {
    background-color: #8b0000;
    color: white;
}

/* Footer */
.site-footer {
    background-color: #2d2d2d;
    border-top: 3px solid #8b0000;
    padding: 50px 0 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-widgets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 30px;
}

.footer-widgets h3 {
    font-family: 'Cinzel', serif;
    color: #8b0000;
    font-size: 24px;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    background-color: #1a1a1a;
    border: 2px solid #8b0000;
    color: #c0c0c0;
    border-radius: 5px;
}

.newsletter-form button {
    background-color: #8b0000;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.links-widget ul {
    list-style: none;
}

.links-widget li {
    margin-bottom: 10px;
}

.links-widget a {
    color: #c0c0c0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.links-widget a:hover {
    color: #8b0000;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #888;
}

.footer-bottom a {
    color: #8b0000;
    text-decoration: none;
}

/* Single Ad Page Styles */
.single-ad {
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 30px;
}

.ad-header {
    text-align: center;
    margin-bottom: 40px;
}

.ad-header h1 {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    color: #8b0000;
    margin-bottom: 15px;
}

.ad-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ad-meta span {
    font-size: 18px;
    color: #c0c0c0;
}

.badge {
    background-color: #8b0000;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
}

.badge.verified {
    background-color: #00a500;
}

.badge.featured {
    background-color: #ffa500;
}

/* Photo Gallery */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

/* Content Section */
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.about-facts h2, .about-bio h2 {
    font-family: 'Cinzel', serif;
    color: #8b0000;
    font-size: 28px;
    margin-bottom: 20px;
}

.facts-list {
    list-style: none;
}

.facts-list li {
    padding: 10px 0;
    border-bottom: 1px solid #444;
    font-size: 16px;
}

.facts-list strong {
    color: #8b0000;
}

.bio-content {
    font-size: 18px;
    line-height: 1.8;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    min-width: 150px;
    transition: all 0.3s ease;
}

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

.cta-btn.sms {
    background-color: #0084ff;
    color: white;
}

.cta-btn.video {
    background-color: #8b0000;
    color: white;
}

.cta-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Location Map */
.location-map {
    text-align: center;
}

.location-map h2 {
    font-family: 'Cinzel', serif;
    color: #8b0000;
    font-size: 28px;
    margin-bottom: 20px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #8b0000;
}

/* Static Pages */
.static-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 30px;
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    color: #8b0000;
}

.page-content {
    font-size: 18px;
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .ads-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .ads-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .photo-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-widgets {
        grid-template-columns: 1fr;
    }
    
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .ads-container {
        grid-template-columns: 1fr;
    }
    
    .photo-gallery {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ===============================================
   LUXURY HEADER STYLES
=============================================== */

/* Top Bar */
.header-topbar {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    border-bottom: 1px solid rgba(139, 0, 0, 0.3);
    padding: 8px 0;
    font-size: 14px;
}

.topbar-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.location-badge {
    color: #888;
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-switcher {
    display: flex;
    background-color: rgba(139, 0, 0, 0.1);
    border-radius: 20px;
    padding: 4px;
}

.lang-btn {
    background: none;
    border: none;
    color: #888;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn.active,
.lang-btn:hover {
    background-color: #8b0000;
    color: white;
}

.member-login {
    color: #c0c0c0;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.member-login:hover {
    color: #8b0000;
}

/* Main Header */
.luxury-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(45, 45, 45, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.header-main {
    border-bottom: 2px solid transparent;
    background: linear-gradient(135deg, #2d2d2d 0%, #1f1f1f 100%);
    position: relative;
}

.header-main::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #8b0000 50%, transparent 100%);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    gap: 40px;
}

/* Logo */
.logo-section {
    flex-shrink: 0;
}

.luxury-logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-family: 'Bodoni Moda', serif;
    font-weight: 700;
    font-size: 36px;
    color: #8b0000;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1;
    background: linear-gradient(135deg, #8b0000 0%, #c41e3a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-tagline {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    color: #888;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: -2px;
}

/* Navigation */
.luxury-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #c0c0c0;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8b0000, #c41e3a);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #8b0000;
    transform: translateY(-1px);
}

.nav-link:hover::before {
    width: 100%;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(135deg, #2d2d2d 0%, #1f1f1f 100%);
    border: 1px solid rgba(139, 0, 0, 0.3);
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

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

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #c0c0c0;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(139, 0, 0, 0.1);
}

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

.dropdown-item:hover {
    background-color: rgba(139, 0, 0, 0.1);
    color: #8b0000;
    padding-left: 25px;
}

/* CTA Button */
.header-cta {
    flex-shrink: 0;
}

.cta-button {
    background: linear-gradient(135deg, #8b0000 0%, #c41e3a 100%);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.4);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background-color: #c0c0c0;
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: linear-gradient(135deg, #2d2d2d 0%, #1f1f1f 100%);
    border-top: 1px solid rgba(139, 0, 0, 0.3);
    padding: 20px 0;
}

.mobile-nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav a {
    color: #c0c0c0;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid rgba(139, 0, 0, 0.1);
    transition: color 0.3s ease;
}

.mobile-nav a:hover,
.mobile-cta {
    color: #8b0000 !important;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 25px;
    }
    
    .header-content {
        padding: 15px 20px;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .luxury-nav,
    .header-cta {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .topbar-content {
        padding: 0 20px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .topbar-right {
        gap: 20px;
    }
    
    .logo-text {
        font-size: 28px;
    }
    
    .mobile-menu.active {
        display: block;
    }
}

/* Icons (you can replace with actual icon font) */
.icon-location::before { content: "📍"; }
.icon-user::before { content: "👤"; }
.icon-chevron::before { content: "▼"; }
.icon-arrow::before { content: "→"; }



/* ===============================================
   ADS GRID UPDATES
=============================================== */

.ad-card {
    background-color: var(--surface);
    border: 2px solid transparent;
}

.ad-card:hover {
    border-color: var(--primary);
}

.ad-details h3 {
    color: var(--primary);
}

.ad-details p {
    color: var(--text);
}

.ad-actions button {
    border: 1px solid var(--primary);
    color: var(--text);
}

.meet-btn {
    background-color: var(--primary);
    color: var(--text);
}

.meet-btn:hover {
    background-color: var(--secondary);
    color: var(--background);
}

/* ===============================================
   PAGINATION UPDATES
=============================================== */

.pagination a, .pagination span {
    color: var(--text);
    border: 1px solid var(--primary);
}

.pagination .current {
    background-color: var(--primary);
    color: var(--text);
}

/* ===============================================
.page-header h1 {
    color: var(--primary);
}

/* ===============================================
   ENHANCED MIDNIGHT BURGUNDY + MODERN SOPHISTICATION
   High Contrast Color Scheme + Premium Typography
=============================================== */

:root {
    /* Enhanced High Contrast Colors */
    --primary: #8B2635;           /* Brighter wine red */
    --secondary: #E6C794;         /* Brighter champagne gold */
    --background: #0F0F0F;        /* Deeper black background */
    --surface: #1E1E1E;           /* Darker surface */
    --surface-light: #2A2A2A;     /* Lighter surface for cards */
    --accent: #FFD700;            /* Bright gold */
    --text: #FFFFFF;              /* Pure white text */
    --text-secondary: #E0E0E0;    /* High contrast secondary */
    --text-muted: #B0B0B0;        /* Better muted contrast */
    --border: rgba(139, 38, 53, 0.4); /* Enhanced border visibility */
    
    /* Typography Scale */
    --font-display: 'Cormorant Garamond', serif;  /* Headlines */
    --font-accent: 'Cinzel', serif;               /* Logo & special */
    --font-body: 'Source Sans Pro', sans-serif;   /* Body text */
    --font-ui: 'Nunito Sans', sans-serif;         /* UI elements */
    
    /* Typography Sizes */
    --text-xs: 12px;
    --text-sm: 14px;
    --text-base: 16px;
    --text-lg: 18px;
    --text-xl: 20px;
    --text-2xl: 24px;
    --text-3xl: 30px;
    --text-4xl: 36px;
    --text-5xl: 48px;
    
    /* Spacing Scale */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
}

/* Global Typography Updates */
body {
    font-family: var(--font-body);
    background-color: var(--background);
    color: var(--text);
    font-size: var(--text-base);
    line-height: 1.6;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text);
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

/* ===============================================
   ENHANCED HEADER
=============================================== */

.header-topbar {
    background: linear-gradient(135deg, var(--background) 0%, #1a1a1a 100%);
    border-bottom: 1px solid var(--border);
}

.location-badge {
    color: var(--text-muted);
    font-family: var(--font-ui);
    font-size: var(--text-sm);
    font-weight: 400;
}

.lang-btn {
    font-family: var(--font-ui);
    font-weight: 500;
    color: var(--text-muted);
}

.lang-btn.active,
.lang-btn:hover {
    background-color: var(--primary);
    color: var(--text);
}

.member-login {
    font-family: var(--font-ui);
    color: var(--text-secondary);
    font-weight: 500;
}

.member-login:hover {
    color: var(--primary);
}

.luxury-header {
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.header-main {
    background: linear-gradient(135deg, var(--surface) 0%, #181818 100%);
}

.header-main::before {
    background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
}

.logo-text {
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: var(--text-4xl);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.logo-tagline {
    font-family: var(--font-accent);
    font-size: var(--text-xs);
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
}

.nav-link {
    font-family: var(--font-ui);
    color: var(--text-secondary);
    font-weight: 500;
    font-size: var(--text-base);
}

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

.dropdown-menu {
    background: linear-gradient(135deg, var(--surface-light) 0%, var(--surface) 100%);
    border: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.7);
}

.dropdown-item {
    font-family: var(--font-ui);
    color: var(--text-secondary);
    font-weight: 400;
}

.dropdown-item:hover {
    background-color: rgba(139, 38, 53, 0.15);
    color: var(--primary);
}

.cta-button {
    font-family: var(--font-ui);
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    box-shadow: 0 4px 15px rgba(139, 38, 53, 0.4);
}

.cta-button:hover {
    box-shadow: 0 8px 25px rgba(139, 38, 53, 0.6);
}



/* ===============================================
   SEO CONTENT SECTION
=============================================== */

.seo-content {
    background: linear-gradient(135deg, var(--background) 0%, var(--surface) 100%);
    padding: var(--space-3xl) 0;
    border-bottom: 1px solid var(--border);
}

.seo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.seo-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.seo-header h1 {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--space-md);
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.seo-breadcrumb {
    font-family: var(--font-ui);
    font-size: var(--text-sm);
    color: var(--text-muted);
    font-weight: 400;
}

.seo-breadcrumb span:last-child {
    color: var(--primary);
    font-weight: 500;
}

.seo-description {
    max-width: 900px;
    margin: 0 auto var(--space-2xl);
    text-align: center;
}

.seo-description p {
    font-family: var(--font-body);
    font-size: var(--text-lg);
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    font-weight: 400;
}

.seo-description strong {
    color: var(--primary);
    font-weight: 600;
}

.seo-description em {
    color: var(--secondary);
    font-style: normal;
    font-weight: 500;
}

.seo-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.highlight-item {
    background: linear-gradient(135deg, var(--surface-light) 0%, var(--surface) 100%);
    padding: var(--space-xl);
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.highlight-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 38, 53, 0.3);
    border-color: var(--primary);
}

.highlight-item h3 {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    color: var(--primary);
    margin-bottom: var(--space-md);
    font-weight: 600;
}

.highlight-item p {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 400;
}

/* ===============================================
   AREAS SEO SECTION
=============================================== */

.areas-seo {
    background: var(--surface);
    padding: var(--space-2xl) 0;
    border-bottom: 1px solid var(--border);
}

.areas-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.areas-seo h2 {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    color: var(--primary);
    text-align: center;
    margin-bottom: var(--space-2xl);
    font-weight: 600;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.area-item {
    background: linear-gradient(135deg, var(--background) 0%, var(--surface-light) 100%);
    padding: var(--space-lg);
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    text-align: center;
}

.area-item:hover {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--surface-light) 0%, var(--background) 100%);
}

.area-item h3 {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    color: var(--secondary);
    margin-bottom: var(--space-sm);
    font-weight: 600;
}

.area-item p {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .seo-content {
        padding: var(--space-2xl) 0;
    }
    
    .seo-container,
    .areas-container {
        padding: 0 var(--space-lg);
    }
    
    .seo-header h1 {
        font-size: var(--text-3xl);
    }
    
    .seo-description p {
        font-size: var(--text-base);
        text-align: left;
    }
    
    .seo-highlights {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}

@media (max-width: 480px) {
    .seo-header h1 {
        font-size: var(--text-2xl);
        line-height: 1.3;
    }
    
    .highlight-item,
    .area-item {
        padding: var(--space-lg);
    }
    
    .seo-description p {
        font-size: var(--text-sm);
    }
}


/* ===============================================
   FEATURED ADS HEADER
=============================================== */

.featured-header {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: var(--space-xl);
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.featured-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
}

.featured-header h2 {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    color: var(--primary);
    margin-bottom: var(--space-sm);
    font-weight: 600;
}

.featured-header p {
    font-family: var(--font-body);
    font-size: var(--text-lg);
    color: var(--text-muted);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .featured-header h2 {
        font-size: var(--text-2xl);
    }
    
    .featured-header p {
        font-size: var(--text-base);
    }
}


/* ===============================================
   IMAGE SYSTEM OPTIMIZATION
=============================================== */

/* Homepage ad cards - 400x600 images */
.ad-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    position: relative;
}

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

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

/* Single ad page gallery - 500x750 images */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 38, 53, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* Image loading states */
.ad-image img, .gallery-item img {
    background-color: var(--surface);
    background-image: linear-gradient(45deg, var(--surface) 25%, transparent 25%), 
                      linear-gradient(-45deg, var(--surface) 25%, transparent 25%), 
                      linear-gradient(45deg, transparent 75%, var(--surface) 75%), 
                      linear-gradient(-45deg, transparent 75%, var(--surface) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .photo-gallery {
        grid-template-columns: 1fr;
    }
    
    .gallery-item img {
        height: 300px;
    }
}


/* Gallery Placeholder */
.gallery-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--space-2xl);
    background: var(--surface);
    border: 2px dashed var(--border);
    border-radius: 8px;
    color: var(--text-muted);
}

.gallery-placeholder p {
    font-size: var(--text-lg);
    margin: 0;
}


/* ===============================================
   SINGLE AD PAGE LAYOUT IMPROVEMENTS
=============================================== */

/* Increase overall container margins for breathing room */
.single-ad {
    max-width: 1200px; /* Reduced from 1400px for better proportions */
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-3xl); /* Increased left/right padding */
}

/* Photo Gallery - Exact 500x750 dimensions */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl); /* Increased gap between images */
    margin: var(--space-3xl) var(--space-2xl); /* Added left/right margins */
    margin-bottom: var(--space-3xl);
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(139, 38, 53, 0.5);
}

.gallery-item img {
    width: 500px;  /* Exact width */
    height: 750px; /* Exact height */
    object-fit: cover;
    display: block;
}

/* Content section spacing improvements */
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl); /* Increased gap */
    margin: var(--space-3xl) var(--space-2xl); /* Added left/right margins */
    margin-bottom: var(--space-3xl);
}

/* CTA buttons section spacing */
.cta-buttons {
    display: flex;
    gap: var(--space-xl);
    justify-content: center;
    margin: var(--space-3xl) var(--space-2xl); /* Added left/right margins */
    margin-bottom: var(--space-3xl);
    flex-wrap: wrap;
}

/* Location map section spacing */
.location-map {
    text-align: center;
    margin: 0 var(--space-2xl); /* Added left/right margins */
}

.location-map h2 {
    font-family: var(--font-display);
    color: var(--primary);
    font-size: var(--text-3xl);
    margin-bottom: var(--space-xl);
    font-weight: 600;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid var(--primary);
    box-shadow: 0 8px 25px rgba(139, 38, 53, 0.3);
}

/* Ad header spacing */
.ad-header {
    text-align: center;
    margin: 0 var(--space-2xl) var(--space-3xl); /* Added left/right margins */
}

/* Gallery placeholder spacing */
.gallery-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--space-3xl);
    background: var(--surface);
    border: 2px dashed var(--border);
    border-radius: 12px;
    color: var(--text-muted);
    margin: 0 var(--space-2xl); /* Added left/right margins */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .single-ad {
        padding: var(--space-xl) var(--space-lg);
    }
    
    .photo-gallery,
    .content-wrapper,
    .cta-buttons,
    .location-map,
    .ad-header,
    .gallery-placeholder {
        margin-left: var(--space-lg);
        margin-right: var(--space-lg);
    }
    
    .gallery-item img {
        width: 100%;
        height: auto;
        min-height: 400px;
        max-height: 600px;
    }
}

@media (max-width: 768px) {
    .single-ad {
        padding: var(--space-lg) var(--space-md);
    }
    
    .photo-gallery {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .photo-gallery,
    .content-wrapper,
    .cta-buttons,
    .location-map,
    .ad-header,
    .gallery-placeholder {
        margin-left: var(--space-md);
        margin-right: var(--space-md);
    }
    
    .gallery-item img {
        width: 100%;
        height: auto;
        min-height: 350px;
        max-height: 500px;
    }
}

@media (max-width: 480px) {
    .single-ad {
        padding: var(--space-md) var(--space-sm);
    }
    
    .photo-gallery,
    .content-wrapper,
    .cta-buttons,
    .location-map,
    .ad-header,
    .gallery-placeholder {
        margin-left: var(--space-sm);
        margin-right: var(--space-sm);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}


/* ===============================================
   PHOTO GALLERY - REFINED SPACING & BORDERS
=============================================== */

/* Photo Gallery - 10px gaps with luxury border effects */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px; /* Exact 10px gap as requested */
    margin: var(--space-3xl) var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* Luxury border effect */
    border: 2px solid transparent;
    background: linear-gradient(var(--surface), var(--surface)) padding-box,
                linear-gradient(135deg, var(--primary), var(--secondary), var(--primary)) border-box;
    
    /* Enhanced shadow */
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        0 2px 8px rgba(139, 38, 53, 0.2);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(139, 38, 53, 0.1) 0%, 
        transparent 50%, 
        rgba(230, 199, 148, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.gallery-item:hover {
    transform: translateY(-3px) scale(1.01);
    
    /* Enhanced hover border */
    background: linear-gradient(var(--surface), var(--surface)) padding-box,
                linear-gradient(135deg, var(--secondary), var(--accent), var(--primary)) border-box;
    
    /* Enhanced hover shadow */
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.4),
        0 4px 15px rgba(139, 38, 53, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item img {
    width: 500px;
    height: 750px;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    filter: brightness(1.05) contrast(1.02);
}

/* Add subtle glow effect on focus/active states */
.gallery-item:focus,
.gallery-item:active {
    outline: none;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.4),
        0 4px 15px rgba(139, 38, 53, 0.4),
        0 0 0 3px rgba(139, 38, 53, 0.3);
}

/* Responsive adjustments for smaller screens */
@media (max-width: 1024px) {
    .gallery-item img {
        width: 100%;
        height: auto;
        min-height: 400px;
        max-height: 600px;
    }
}

@media (max-width: 768px) {
    .photo-gallery {
        grid-template-columns: 1fr;
        gap: 10px; /* Maintain 10px gap on mobile */
    }
    
    .gallery-item img {
        width: 100%;
        height: auto;
        min-height: 350px;
        max-height: 500px;
    }
}


/* ===============================================
   ENHANCED FOOTER - 3 COLUMN LAYOUT
=============================================== */

.footer-widgets {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* Changed to 3 equal columns */
    gap: var(--space-3xl);
    margin-bottom: var(--space-2xl);
}

.footer-widgets h3 {
    font-family: var(--font-display);
    color: var(--primary);
    font-size: var(--text-2xl);
    margin-bottom: var(--space-lg);
    font-weight: 600;
}

/* Newsletter Widget Styling */
.newsletter-widget p {
    font-family: var(--font-body);
    color: var(--text-muted);
    font-size: var(--text-sm);
    margin-bottom: var(--space-lg);
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.newsletter-form input {
    font-family: var(--font-ui);
    background-color: var(--surface-light);
    border: 2px solid var(--border);
    color: var(--text);
    padding: var(--space-md);
    border-radius: 8px;
    font-size: var(--text-base);
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 38, 53, 0.2);
}

.newsletter-form button {
    font-family: var(--font-ui);
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--text);
    border: none;
    padding: var(--space-md);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: var(--text-base);
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 38, 53, 0.4);
}

/* Quick Links Styling */
.links-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-widget li {
    margin-bottom: var(--space-md);
}

.links-widget a {
    font-family: var(--font-body);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--text-base);
    transition: all 0.3s ease;
    display: block;
    padding: var(--space-xs) 0;
}

.links-widget a:hover {
    color: var(--primary);
    padding-left: var(--space-sm);
}

/* Members Area Widget Styling */
.members-widget p {
    font-family: var(--font-body);
    color: var(--text-muted);
    font-size: var(--text-sm);
    margin-bottom: var(--space-lg);
    line-height: 1.5;
}

.members-form {
    margin-bottom: var(--space-lg);
}

.form-group {
    margin-bottom: var(--space-md);
}

.members-form input {
    width: 100%;
    font-family: var(--font-ui);
    background-color: var(--surface-light);
    border: 2px solid var(--border);
    color: var(--text);
    padding: var(--space-md);
    border-radius: 8px;
    font-size: var(--text-base);
    transition: all 0.3s ease;
}

.members-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 38, 53, 0.2);
}

.members-login-btn {
    width: 100%;
    font-family: var(--font-ui);
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--text);
    border: none;
    padding: var(--space-md);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: var(--text-base);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.members-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 38, 53, 0.4);
}

.members-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.members-links a {
    font-family: var(--font-ui);
    color: var(--text-muted);
    text-decoration: none;
    font-size: var(--text-sm);
    transition: color 0.3s ease;
}

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

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-widgets {
        gap: var(--space-xl);
    }
}

@media (max-width: 768px) {
    .footer-widgets {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }
    
    .newsletter-form,
    .members-form {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .footer-widgets {
        gap: var(--space-xl);
    }
}


/* ===============================================
   HOMEPAGE LAYOUT IMPROVEMENTS - CONSISTENT MARGINS
=============================================== */

.filters {
    text-align: center;
    padding: 2rem 1rem;
    background: #f8f9fa;
}

.filters-title {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.filters-container {
    max-width: 800px;
    margin: 0 auto;
}

#filter-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.filter-select {
    width: 100%;
    max-width: 300px;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Source Sans Pro', sans-serif;
    background: white;
    color: #333;
    /* Fix for the down arrow */
    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='%23333' 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;
    padding-right: 40px; /* Make room for the arrow */
}

.filter-btn {
    width: 100%;
    max-width: 300px;
    padding: 12px 16px;
    background: #8B0000;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    font-family: 'Source Sans Pro', sans-serif;
    transition: background 0.3s ease;
}

.filter-btn:hover {
    background: #A52A2A;
}

/* Desktop */
@media (min-width: 768px) {
    #filter-form {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .filter-select, .filter-btn {
        width: auto;
        flex: 1;
        min-width: 150px;
        max-width: 200px;
    }
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .filters {
        padding: 1.5rem 0.5rem;
    }
    
    .filters-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .filter-select, .filter-btn {
        max-width: 100%;
        padding: 14px 16px;
        font-size: 1.1rem;
    }
    
    .filter-select {
        padding-right: 45px; /* Slightly more room for arrow on mobile */
        background-position: right 16px center;
    }
}

/* Very small mobile devices */
@media (max-width: 480px) {
    .filter-select, .filter-btn {
        padding: 16px 18px;
        font-size: 1.05rem;
    }
    
    .filter-select {
        padding-right: 50px;
    }
}

/* SEO Content Section - Better margins */
.seo-container {
    max-width: 1200px; /* Consistent with other sections */
    margin: 0 auto;
    padding: 0 var(--space-3xl); /* Increased side padding */
}

.seo-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
    padding: 0 var(--space-lg); /* Additional inner padding */
}

/* Main Ads Grid - Enhanced spacing */
.ads-container {
    max-width: 1200px; /* Reduced from 1400px for consistency */
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl); /* Increased from 30px */
    padding: 0 var(--space-3xl); /* Increased side padding */
}

/* Featured header spacing */
.featured-header {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: var(--space-xl);
    padding: var(--space-xl) var(--space-lg); /* Added side padding */
    border-bottom: 1px solid var(--border);
    position: relative;
}

/* Areas SEO Section - Consistent margins */
.areas-container {
    max-width: 1200px; /* Consistent with other sections */
    margin: 0 auto;
    padding: 0 var(--space-3xl); /* Increased side padding */
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl); /* Increased gap */
    padding: 0 var(--space-lg); /* Additional inner padding */
}

/* Pagination - Better spacing */
.pagination {
    text-align: center;
    padding: var(--space-2xl) var(--space-3xl); /* Added side padding */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero-content,
    .filters-container,
    .seo-container,
    .ads-container,
    .areas-container {
        padding-left: var(--space-xl);
        padding-right: var(--space-xl);
    }
    
    .ads-container {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg);
    }
    
    .seo-highlights,
    .areas-grid {
        padding: 0 var(--space-md);
    }
}

@media (max-width: 768px) {
    .hero-content,
    .filters-container,
    .seo-container,
    .ads-container,
    .areas-container {
        padding-left: var(--space-lg);
        padding-right: var(--space-lg);
    }
    
    .ads-container {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
    
    .filters-container {
        flex-direction: column;
        gap: 15px;
        padding-top: var(--space-xl);
    }
    
    .seo-highlights {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        padding: 0;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        padding: 0;
    }
}

@media (max-width: 480px) {
    .hero-content,
    .filters-container,
    .seo-container,
    .ads-container,
    .areas-container {
        padding-left: var(--space-md);
        padding-right: var(--space-md);
    }
    
    .ads-container {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}


/* ===============================================
   CONSISTENT LAYOUT - PREVENT LAYOUT SHIFTS
=============================================== */

/* Header - Match main content container width */
.header-content {
    max-width: 1200px; /* Match other sections */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px var(--space-3xl); /* Match side padding */
    gap: 40px;
}

.topbar-content {
    max-width: 1200px; /* Match other sections */
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--space-3xl); /* Match side padding */
}

/* Footer - Match main content container width */
.footer-content {
    max-width: 1200px; /* Match other sections */
    margin: 0 auto;
    padding: 0 var(--space-3xl); /* Match side padding */
}

/* Ensure consistent spacing hierarchy */
.site-footer {
    background: linear-gradient(135deg, var(--surface) 0%, var(--background) 100%);
    border-top: 3px solid var(--primary);
    padding: var(--space-3xl) 0 var(--space-xl); /* Consistent vertical padding */
}

/* Responsive consistency */
@media (max-width: 1024px) {
    .header-content,
    .topbar-content,
    .footer-content {
        padding-left: var(--space-xl);
        padding-right: var(--space-xl);
    }
    
    .header-content {
        padding-top: 15px;
        padding-bottom: 15px;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .header-content,
    .topbar-content,
    .footer-content {
        padding-left: var(--space-lg);
        padding-right: var(--space-lg);
    }
    
    .topbar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding-top: var(--space-sm);
        padding-bottom: var(--space-sm);
    }
    
    .header-content {
        padding-top: 15px;
        padding-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .header-content,
    .topbar-content,
    .footer-content {
        padding-left: var(--space-md);
        padding-right: var(--space-md);
    }
}

/* Performance optimization - prevent layout shift */
.luxury-header {
    min-height: 140px; /* Consistent header height */
}

.site-footer {
    min-height: 300px; /* Prevent footer height shifts */
}


/* Card Action Buttons - Centered & Interactive */
.ad-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
    padding: 0.75rem 0;
    border-top: 1px solid rgba(114, 47, 55, 0.2);
    border-bottom: 1px solid rgba(114, 47, 55, 0.2);
}

.action-btn {
    background: transparent;
    border: 2px solid var(--accent-red, #8B0000);
    color: var(--accent-red, #8B0000);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    position: relative;
}

.action-btn:hover {
    background: var(--accent-red, #8B0000);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
}

.action-btn i {
    pointer-events: none;
}

/* Favorite Button Active State */
.favorite-btn.active i {
    color: #8B0000;
}

.favorite-btn.active {
    background: var(--accent-red, #8B0000);
    border-color: var(--accent-red, #8B0000);
}

.favorite-btn.active i {
    color: white;
}

.favorite-btn.active i::before {
    content: "\f004"; /* Solid heart */
    font-weight: 900;
}

/* Share Dropdown */
.share-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 2px solid var(--accent-red, #8B0000);
    border-radius: 8px;
    padding: 0.5rem;
    margin-top: 0.5rem;
    display: none;
    z-index: 100;
    min-width: 180px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.share-btn.active .share-dropdown {
    display: block;
}

.share-option {
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #333;
    border-radius: 4px;
}

.share-option:hover {
    background: var(--accent-red, #8B0000);
    color: white;
}

.share-option i {
    font-size: 1.1rem;
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    max-width: 800px;
    width: 90%;
    background: #1a1a1a;
    border: 3px solid var(--accent-red, #8B0000);
    border-radius: 12px;
    padding: 2rem;
}

.video-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-red, #8B0000);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-modal-close:hover {
    background: #a00000;
    transform: rotate(90deg);
}

.video-modal video {
    width: 100%;
    border-radius: 8px;
}

.video-modal-title {
    color: white;
    text-align: center;
    margin-bottom: 1rem;
    font-family: 'Cinzel', serif;
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--accent-red, #8B0000);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: none;
    align-items: center;
    gap: 0.75rem;
    z-index: 10000;
    animation: slideIn 0.3s ease;
}

.toast-notification.show {
    display: flex;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.toast-notification i {
    font-size: 1.3rem;
}


/* ===== PAGINATION STYLING ===== */
.pagination {
    margin: 3rem auto;
    max-width: 1200px;
    padding: 0 2rem;
}

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

.pagination li {
    margin: 0;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 1rem;
    background: transparent;
    border: 2px solid #722f37;
    color: #722f37;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.pagination a:hover {
    background: #722f37;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(114, 47, 55, 0.3);
}

.pagination .current {
    background: #722f37;
    color: white;
    border-color: #722f37;
    box-shadow: 0 4px 12px rgba(114, 47, 55, 0.4);
}

.pagination .dots {
    border: none;
    color: #722f37;
    cursor: default;
}

.pagination .prev,
.pagination .next {
    gap: 0.5rem;
    padding: 0 1.25rem;
}

.pagination .prev i,
.pagination .next i {
    font-size: 0.875rem;
}

/* Responsive Pagination */
@media (max-width: 768px) {
    .pagination a,
    .pagination span {
        min-width: 40px;
        height: 40px;
        padding: 0 0.75rem;
        font-size: 0.9rem;
    }
    
    .pagination .prev span,
    .pagination .next span {
        display: none;
    }
    
    .pagination .prev,
    .pagination .next {
        padding: 0;
        min-width: 40px;
    }
}

@media (max-width: 480px) {
    .pagination ul {
        gap: 0.25rem;
    }
    
    .pagination a,
    .pagination span {
        min-width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }
}


/* ===== SINGLE ESCORT PROFILE STYLING ===== */
.single-escort {
    background: linear-gradient(135deg, #1a0a0f 0%, #2d1a1f 100%);
    min-height: 100vh;
    padding: 2rem 0;
}

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

/* Header */
.single-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(114, 47, 55, 0.1);
    border-radius: 12px;
    border: 2px solid rgba(114, 47, 55, 0.3);
}

.escort-name {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(139, 0, 0, 0.3);
}

.escort-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: #c0c0c0;
    margin-bottom: 1.5rem;
}

.meta-item i {
    color: #722f37;
    margin-right: 0.5rem;
}

.meta-divider {
    color: #722f37;
}

.badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.badge.verified {
    background: rgba(40, 167, 69, 0.2);
    border: 2px solid #28a745;
    color: #28a745;
}

.badge.featured {
    background: rgba(255, 193, 7, 0.2);
    border: 2px solid #ffc107;
    color: #ffc107;
}

/* Photo Gallery */
.photo-gallery-section {
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 3px solid #722f37;
    aspect-ratio: 2/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-placeholder {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    background: rgba(114, 47, 55, 0.1);
    border: 2px dashed #722f37;
    border-radius: 12px;
    color: #c0c0c0;
}

.gallery-placeholder i {
    font-size: 4rem;
    color: #722f37;
    margin-bottom: 1rem;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

/* About Facts Sidebar */
.about-facts {
    background: rgba(114, 47, 55, 0.1);
    border: 2px solid #722f37;
    border-radius: 12px;
    padding: 2rem;
}

.about-facts h2, .about-bio h2 {
    font-family: 'Cinzel', serif;
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.about-facts h2 i, .about-bio h2 i {
    color: #722f37;
}

.facts-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.facts-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(114, 47, 55, 0.3);
}

.fact-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #c0c0c0;
    font-weight: 600;
}

.fact-label i {
    color: #722f37;
    width: 20px;
}

.fact-value {
    color: #ffffff;
}

.services-list h3 {
    font-family: 'Cinzel', serif;
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.services-list h3 i {
    color: #722f37;
}

.services-list ul {
    list-style: none;
    padding: 0;
}

.services-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    font-weight: 600;
}

.services-list li.available {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.services-list li.unavailable {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

/* Bio Section */
.about-bio {
    background: rgba(114, 47, 55, 0.1);
    border: 2px solid #722f37;
    border-radius: 12px;
    padding: 2rem;
}

.bio-content {
    color: #c0c0c0;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.bio-content p {
    margin-bottom: 1rem;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-btn {
    flex: 1;
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.cta-btn.whatsapp:hover {
    background: #1fb855;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.cta-btn.sms {
    background: #007AFF;
    color: white;
}

.cta-btn.sms:hover {
    background: #0051d5;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 122, 255, 0.4);
}

.cta-btn.video {
    background: #722f37;
    color: white;
}

.cta-btn.video:hover {
    background: #8B0000;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(114, 47, 55, 0.4);
}

/* Location Section */
.location-section {
    margin-bottom: 3rem;
    background: rgba(114, 47, 55, 0.1);
    border: 2px solid #722f37;
    border-radius: 12px;
    padding: 2rem;
}

.location-section h2 {
    font-family: 'Cinzel', serif;
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.location-section h2 i {
    color: #722f37;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #722f37;
}

/* Back Link */
.back-link {
    text-align: center;
    padding: 2rem 0;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid #722f37;
    color: #722f37;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: #722f37;
    color: white;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 968px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .escort-name {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
    }
}


/* ===== MOBILE FIXES FOR SINGLE PROFILE ===== */
@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 400px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cta-btn {
        max-width: 100%;
    }
}




/* ===== ABOUT PAGE STYLING ===== */
.about-page {
    background: linear-gradient(135deg, #1a0a0f 0%, #0a0a0a 100%);
    min-height: 100vh;
    padding: 3rem 0;
}

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

.about-hero {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 2rem;
    background: rgba(114, 47, 55, 0.1);
    border: 2px solid #722f37;
    border-radius: 12px;
}

.about-hero h1 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-hero .lead {
    font-size: 1.2rem;
    color: #c0c0c0;
    line-height: 1.6;
}

.about-content {
    color: #c0c0c0;
}

.content-block {
    margin-bottom: 3rem;
    background: rgba(114, 47, 55, 0.05);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #722f37;
}

.content-block h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #722f37;
}

.content-block h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #ffffff;
    margin: 2rem 0 1rem 0;
}

.content-block p {
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.content-block a {
    color: #722f37;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.content-block a:hover {
    color: #8B0000;
}

.about-image {
    margin: 3rem 0;
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    border: 3px solid #722f37;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.about-image figcaption {
    margin-top: 1rem;
    font-style: italic;
    color: #888;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.benefits-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    border-bottom: 1px solid rgba(114, 47, 55, 0.2);
}

.benefits-list li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #722f37;
}

.benefits-list strong {
    color: #ffffff;
}

.content-block.closing {
    background: rgba(114, 47, 55, 0.15);
    border: 2px solid #722f37;
    padding: 3rem;
    margin-top: 4rem;
}

.cta-section {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-browse, .btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-browse {
    background: #722f37;
    color: white;
}

.btn-browse:hover {
    background: #8B0000;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(114, 47, 55, 0.4);
}

.btn-contact {
    background: transparent;
    border: 2px solid #722f37;
    color: #722f37;
}

.btn-contact:hover {
    background: #722f37;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 1.8rem;
    }
    
    .about-hero .lead {
        font-size: 1rem;
    }
    
    .content-block {
        padding: 1.5rem;
    }
    
    .content-block h2 {
        font-size: 1.6rem;
    }
    
    .cta-section {
        flex-direction: column;
    }
    
    .btn-browse, .btn-contact {
        width: 100%;
        justify-content: center;
    }
}

.escort-map {
    padding: 2rem 1rem;
    background: #f8f9fa;
    margin: 2rem 0;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
}

.map-container h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}

.map-address {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.map-address p {
    margin: 0;
    font-family: 'Source Sans Pro', sans-serif;
    color: #333;
}

/* Mobile responsive */
@media (max-width: 767px) {
    .escort-map {
        padding: 1.5rem 0.5rem;
        margin: 1.5rem 0;
    }
}

/* Photo Gallery Section */
.photo-gallery-section {
    padding: 2rem 1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 equal columns on desktop */
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    aspect-ratio: 3/4; /* Maintain consistent portrait ratio */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

.gallery-placeholder {
    grid-column: 1 / -1; /* Span all columns when no images */
    text-align: center;
    padding: 4rem 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    color: #666;
}

.gallery-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    color: #ccc;
}

/* Mobile - single column */
@media (max-width: 767px) {
    .photo-gallery-section {
        padding: 1.5rem 0.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 1rem;
        max-width: 500px; /* More narrow on mobile */
    }
    
    .gallery-item {
        aspect-ratio: 4/3; /* Slightly wider on mobile */
    }
}

/* Tablet - 2 columns */
@media (min-width: 768px) and (max-width: 1023px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
        max-width: 800px;
    }
}

/* Desktop - 4 columns */
@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}



