/* Escort in Dubai - Main Styles */

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Playfair Display', serif;
  background: #fff;
  color: #181818;
  scroll-behavior: smooth;
  line-height: 1.6;
  padding-top: 80px; /* Header yüksekliği için */
}

/* CSS Custom Properties */
:root {
  --color-gold: #d4af37;
  --color-navy: #101a2b;
  --color-ivory: #f8f6f2;
  --color-dark: #181818;
  --color-light: #fff;
  --color-gray: #666;
  --color-light-gray: #f5f5f5;
  --font-main: 'Playfair Display', serif;
  --font-alt: 'Inter', sans-serif;
  --ease: cubic-bezier(.4,0,.2,1);
  --shadow-light: 0 4px 24px rgba(16,26,43,0.08);
  --shadow-medium: 0 8px 32px rgba(16,26,43,0.16);
  --shadow-heavy: 0 12px 40px rgba(16,26,43,0.24);
}

/* Utility Classes */
.visually-hidden,
.sr-only {
  position: absolute !important;
  width: 1px; 
  height: 1px;
  padding: 0; 
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: all .6s var(--ease);
}

.fade-in.in-view {
  opacity: 1;
  transform: none;
}

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

.section-padding {
  padding: 5rem 0;
}

.text-center {
  text-align: center;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-dark);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1rem, 3vw, 1.5rem);
  margin-bottom: 0.75rem;
}

p {
  font-family: var(--font-alt);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-gray);
  margin-bottom: 1rem;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: url('/profiles/HomeHero.jpg');
  background-size: cover;
  background-position: top center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-light);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(16,26,43,0.7) 0%,
    rgba(16,26,43,0.8) 40%,
    rgba(16,26,43,0.9) 70%,
    rgba(16,26,43,0.95) 100%
  );
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 0%,
    rgba(212,175,55,0.1) 50%,
    rgba(16,26,43,0.4) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 0 2rem;
  animation: heroFadeIn 1.2s ease-out;
}

.hero-content h1 {
  text-shadow: 0 4px 12px rgba(0,0,0,0.8), 0 2px 6px rgba(0,0,0,0.6);
  color: var(--color-light);
  font-weight: 700;
}

.hero-subtitle {
  text-shadow: 0 2px 8px rgba(0,0,0,0.7), 0 1px 4px rgba(0,0,0,0.5);
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  font-family: var(--font-alt);
  font-weight: 300;
  opacity: 0.95;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 8px rgba(0,0,0,0.7), 0 1px 4px rgba(0,0,0,0.5);
}

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

/* Buttons */
.btn {
  font-family: var(--font-alt);
  font-weight: 600;
  border-radius: 50px;
  padding: 1rem 2.5rem;
  cursor: pointer;
  transition: all .4s var(--ease);
  text-decoration: none;
  display: inline-block;
  border: 2px solid transparent;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.btn::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;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-dark);
  border-color: var(--color-gold);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--color-light);
  border-color: var(--color-light);
}

.btn-secondary:hover {
  background: var(--color-light);
  color: var(--color-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Locations Section */
.locations-section {
  background: var(--color-light-gray);
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  color: var(--color-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--color-gray);
  max-width: 600px;
  margin: 0 auto;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 3rem;
}

.location-card {
  background: var(--color-light);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-light);
  transition: all .4s var(--ease);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.location-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold), #c19b2e);
  transform: scaleX(0);
  transition: transform .4s var(--ease);
}

.location-card:hover::before {
  transform: scaleX(1);
}

.location-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.location-card h3 {
  color: var(--color-dark);
  margin-bottom: 1rem;
}

.location-card p {
  margin-bottom: 1.5rem;
}

.location-stats {
  display: flex;
  justify-content: space-around;
  margin-bottom: 1.5rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gold);
  font-family: var(--font-main);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--color-gray);
  font-family: var(--font-alt);
}

/* Services Section */
.services-section {
  background: var(--color-navy);
  color: var(--color-light);
  padding: 6rem 0;
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(212,175,55,0.1)"/></svg>') repeat;
  opacity: 0.3;
}

.services-content {
  position: relative;
  z-index: 1;
}

.services-section .section-title,
.services-section .section-subtitle {
  color: var(--color-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-top: 4rem;
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 3rem;
}

.service-card {
  text-align: center;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all .4s var(--ease);
}

.service-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-gold);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-gold), #c19b2e);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--color-dark);
}

.service-card h3 {
  color: var(--color-light);
  margin-bottom: 1rem;
}

.service-card p {
  color: rgba(255, 255, 255, 0.8);
}

/* Featured Escorts Section */
.featured-section {
  padding: 6rem 0;
  background: var(--color-ivory);
}

.escorts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.escort-card {
  background: var(--color-light);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all .4s var(--ease);
  cursor: pointer;
  position: relative;
  height: fit-content;
}

.escort-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.escort-image {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, #e5e5e5, #f0f0f0);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.escort-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
}

.escort-card:hover .escort-image img {
  transform: scale(1.02);
}

/* VIP Badge - referans görseldeki gibi sağ üst köşede */
.vip-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--color-gold);
  color: var(--color-dark);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-family: var(--font-alt);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.escort-info {
  padding: 1.5rem;
  position: relative;
}

.escort-name {
  font-size: 1.5rem;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
  font-weight: 600;
  text-align: left;
}

.escort-details {
  font-family: var(--font-alt);
  font-size: 0.9rem;
  color: var(--color-gray);
  margin-bottom: 1rem;
  text-align: left;
}

.escort-bio {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.2rem;
  color: var(--color-gray);
  text-align: left;
}

.escort-location {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-family: var(--font-alt);
  font-size: 0.85rem;
}

.location {
  color: var(--color-dark);
  font-weight: 600;
}

.nationality {
  color: var(--color-gray);
}

/* Available Now - soft yeşil tasarım */
.availability {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-family: var(--font-alt);
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
  position: relative;
  overflow: hidden;
}

.availability::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.6s;
}

.availability:hover::before {
  left: 100%;
}

/* Escort CTA - güzel tasarım */
.escort-cta {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #f0f0f0;
}

.btn-small {
  flex: 1;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  border-radius: 25px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-small::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;
}

.btn-small:hover::before {
  left: 100%;
}

.btn-primary.btn-small {
  background: linear-gradient(135deg, var(--color-gold), #c19b2e);
  color: var(--color-dark);
  border-color: var(--color-gold);
}

.btn-primary.btn-small:hover {
  background: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-secondary.btn-small {
  background: transparent;
  color: var(--color-dark);
  border-color: #e0e0e0;
}

.btn-secondary.btn-small:hover {
  background: var(--color-dark);
  color: var(--color-light);
  border-color: var(--color-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(24, 24, 24, 0.2);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--color-gold) 0%, #c19b2e 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
  opacity: 0.3;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h2 {
  color: var(--color-dark);
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--color-dark);
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.8;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta {
  background: var(--color-dark);
  color: var(--color-light);
  border-color: var(--color-dark);
}

.btn-cta:hover {
  background: transparent;
  color: var(--color-dark);
  border-color: var(--color-dark);
}

.btn-cta-secondary {
  background: transparent;
  color: var(--color-dark);
  border-color: var(--color-dark);
}

.btn-cta-secondary:hover {
  background: var(--color-dark);
  color: var(--color-light);
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 2rem;
  backdrop-filter: blur(5px);
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--color-light);
  border-radius: 24px;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0,0,0,0.1);
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-gray);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1;
}

.modal-close:hover {
  background: rgba(0,0,0,0.2);
  color: var(--color-dark);
}

/* Contact Form */
.contact-section {
  padding: 6rem 0;
  background: var(--color-light);
}

.contact-form {
  max-width: 600px;
  margin: 3rem auto 0;
  display: grid;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-family: var(--font-alt);
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  padding: 1rem;
  border: 2px solid #e5e5e5;
  border-radius: 12px;
  font-family: var(--font-alt);
  font-size: 1rem;
  transition: all .3s var(--ease);
  background: var(--color-light);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

/* Age Gate */
.age-gate {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  backdrop-filter: blur(10px);
}

.age-gate.hidden {
  display: none;
}

.age-gate-content {
  background: var(--color-light);
  padding: 3rem;
  border-radius: 24px;
  text-align: center;
  max-width: 500px;
  margin: 2rem;
  box-shadow: var(--shadow-heavy);
}

.age-gate h2 {
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.age-gate p {
  margin-bottom: 2rem;
  color: var(--color-gray);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .escorts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .filter-controls {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }
  
  .filter-buttons {
    justify-content: center;
  }
  
  .filter-selects {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  .hero-cta,
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
  }
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 1rem;
    gap: 1rem;
  }
  
  .location-card {
    padding: 1.5rem 1rem;
  }
  
  .location-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }
  
  .location-card p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  
  .location-stats {
    margin-bottom: 1rem;
  }
  
  .stat-number {
    font-size: 1.2rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 1rem;
    gap: 1.5rem;
  }
  
  .service-card {
    padding: 1.5rem 1rem;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }
  
  .service-card p {
    font-size: 0.9rem;
  }
  
  .escorts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .page-header {
    padding: 6rem 0 3rem;
  }
  
  .page-header-content h1 {
    font-size: 2.5rem;
  }
  
  .filter-controls {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .filter-buttons {
    gap: 0.5rem;
  }
  
  .filter-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
  
  .filter-selects {
    gap: 0.75rem;
  }
  
  .filter-selects select {
    padding: 0.6rem 0.8rem;
    font-size: 0.85rem;
  }
  
  .escort-image {
    height: 220px;
  }
  
  .escort-info {
    padding: 1rem;
  }
  
  .escort-name {
    font-size: 1.2rem;
  }
  
  .escort-details,
  .escort-bio {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .escorts-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .escort-cta {
    flex-direction: column;
  }
  
  .modal {
    padding: 1rem;
  }
  
  .modal-content {
    margin: 0;
  }
  
  .page-header {
    padding: 5rem 0 2.5rem;
  }
  
  .page-header-content h1 {
    font-size: 2rem;
  }
  
  .page-header-content p {
    font-size: 1rem;
  }
  
  .filter-controls {
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
  }
  
  .filter-buttons {
    justify-content: center;
    gap: 0.5rem;
  }
  
  .filter-btn {
    flex: 1;
    min-width: auto;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
  
  .filter-selects {
    flex-direction: column;
    gap: 1rem;
  }
  
  .filter-selects select {
    width: 100%;
  }
  
  .vip-checkbox {
    justify-content: center;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-cta,
  .btn-cta-secondary {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 80vh;
  }
  
  /* Location Cards - Tek sütun ve kompakt tasarım */
  .locations-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1rem;
  }
  
  .location-card {
    padding: 1.25rem 1rem;
    text-align: left;
  }
  
  .location-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .location-card p {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
  }
  
  .location-stats {
    flex-direction: row;
    justify-content: space-around;
    margin-bottom: 0.75rem;
  }
  
  .stat-number {
    font-size: 1.1rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
  }
  
  /* Service Cards - Tek sütun ve kompakt tasarım */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1rem;
  }
  
  .service-card {
    padding: 1.25rem 1rem;
    text-align: center;
  }
  
  .service-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
  
  .service-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .service-card p {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  
  /* Page Header for escorts.html */
  .page-header {
    background: linear-gradient(135deg, var(--color-navy) 0%, rgba(16,26,43,0.9) 100%);
    padding: 8rem 0 4rem;
    text-align: center;
    color: var(--color-light);
    position: relative;
    overflow: hidden;
  }
  
  .page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
  }
  
  .page-header-content {
    position: relative;
    z-index: 2;
  }
  
  .page-header-content h1 {
    color: var(--color-light);
    margin-bottom: 1rem;
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  }
  
  .page-header-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
  }
  
  /* All Escorts Section */
  .all-escorts-section {
    padding: 6rem 0;
    background: var(--color-ivory);
    min-height: 60vh;
  }
  
  /* Filter Controls */
  .filter-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .filter-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
  }
  
  .filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--color-gold);
    background: transparent;
    color: var(--color-gold);
    border-radius: 25px;
    font-family: var(--font-alt);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
  }
  
  .filter-btn:hover,
  .filter-btn.active {
    background: var(--color-gold);
    color: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
  }
  
  .filter-selects {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .filter-selects select {
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    color: var(--color-dark);
    font-size: 0.9rem;
    cursor: pointer;
    transition: border-color 0.3s ease;
  }
  
  .filter-selects select:focus {
    outline: none;
    border-color: var(--color-gold);
  }
  
  .vip-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 500;
    color: var(--color-dark);
    font-family: var(--font-alt);
  }
  
  .vip-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--color-gold);
    cursor: pointer;
  }
  
  /* Footer Logo Update */
  .footer-logo .logo-main {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
    font-family: var(--font-main);
    margin-bottom: 0.25rem;
  }
  
 
  
  .footer-logo .logo-tagline {
    font-family: var(--font-alt);
    font-size: 0.8rem;
    color: var(--color-gray);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.8;
  }
  
  .hero-content {
    padding: 0 1rem;
  }
  
  .location-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .escort-details {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .age-gate-content {
    padding: 2rem;
    margin: 1rem;
  }
}
