/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #1a0d2e;
  color: #f8f0e3;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
.header {
  background-color: #2a1547;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.8rem;
  color: #f3c2b0;
  font-weight: bold;
}

.navbar {
  display: flex;
  align-items: center;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.navbar a {
  color: #f8f0e3;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
}

.navbar a:hover {
  color: #f3c2b0;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  color: #f8f0e3;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .navbar {
    width: 100%;
    display: none;
  }

  .navbar.active {
    display: block;
    margin-top: 15px;
  }

  .navbar ul {
    flex-direction: column;
    gap: 10px;
    background-color: #3a255a;
    padding: 15px;
    border-radius: 10px;
  }
}

/* Hero Section */
.hero {
  background: url('https://www.beirutescortgirls.com/Erotic._files/banner4.jpg') no-repeat center center/cover;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.hero h2 {
  font-size: 4rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.4rem;
}

/* Profiles */
.profiles {
  background-color: #291b3c;
  padding: 60px 20px;
}

.profile-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.profile-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background-color: #2a1d40;
  padding: 15px;
  text-align: center;
  color: #f8f0e3;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  width: 300px;
  transition: transform 0.3s ease;
}

.profile-card:hover {
  transform: translateY(-5px);
}

.profile-image-wrapper {
  position: relative;
}

.profile-image-wrapper img,
.profile-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

.verified-text {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #4caf50;
  color: white;
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: bold;
  text-transform: uppercase;
  z-index: 2;
}

.profile-card h3.name {
  color: #f3c2b0;
  margin-top: 10px;
  font-size: 1.5rem;
}

.profile-card .title {
  color: #d4b3ff;
  font-size: 1.1rem;
  margin-top: 4px;
}

.profile-card .phone {
  color: #ffd9c2;
  font-size: 1rem;
  margin-top: 4px;
}

/* About */
.about {
  padding: 60px 20px;
  background-color: #1a0d2e;
}

/* Content Sections */
.feature-content {
  padding: 60px 0;
  background: #f9f9f9;
}

.feature-content.alt {
  background: #fff;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.feature-image {
  flex: 1 1 45%;
}

.feature-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.feature-text {
  flex: 1 1 50%;
}

.feature-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #111;
}

.feature-text p {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
  }

  .feature-image,
  .feature-text {
    flex: 1 1 100%;
  }
}

/* Gallery */
.gallery {
  padding: 60px 20px;
  background-color: #291b3c;
}

.gallery-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Rates */
.rates {
  padding: 60px 20px;
  background-color: #1a0d2e;
}

.rates ul {
  list-style: none;
  font-size: 1.2rem;
  color: #f3c2b0;
  line-height: 2;
}

/* Contact */
.contact {
  padding: 60px 20px;
  background-color: #291b3c;
  text-align: center;
}

.contact p {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

/* Footer */
.footer {
  background-color: #12071e;
  padding: 30px 0;
  text-align: center;
  font-size: 1rem;
  color: #bbb;
  border-top: 1px solid #2e1b3e;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  color: #f3c2b0;
}

.profile-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.rates-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.rate-card {
  background-color: #2a1d40;
  padding: 25px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  width: 250px;
  transition: transform 0.3s ease, background-color 0.3s;
}

.rate-card:hover {
  transform: translateY(-5px);
  background-color: #3a255a;
}

.rate-card h3 {
  font-size: 1.5rem;
  color: #f3c2b0;
  margin-bottom: 10px;
}

.rate-card .price {
  font-size: 1.3rem;
  color: #ffd9c2;
  font-weight: bold;
}
 .profile-header {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      align-items: flex-start;
      margin-bottom: 40px;
    }

    .profile-image {
      flex: 1 1 350px;
    }

    .profile-image img {
      width: 100%;
      border-radius: 10px;
      object-fit: cover;
    }

    .profile-info {
      flex: 2 1 400px;
    }

    .profile-info h1 {
      color: #f3c2b0;
      font-size: 2.2rem;
      margin-bottom: 10px;
    }

    .profile-info .title {
      font-size: 1.2rem;
      color: #d4b3ff;
      margin-bottom: 10px;
    }

    .profile-info .phone {
      font-size: 1.1rem;
      color: #ffd9c2;
      margin-bottom: 20px;
    }

    .profile-info .phone a {
      color: #ffd9c2;
      text-decoration: none;
    }

    .profile-info p {
      line-height: 1.6;
    }

    .gallery {
      margin-bottom: 40px;
    }

    .gallery h2 {
      margin-bottom: 20px;
      color: #f3c2b0;
      font-size: 1.8rem;
    }

    .gallery-images {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .gallery-images img {
      width: 280px;
      height: 200px;
      object-fit: cover;
      border-radius: 10px;
      border: 2px solid #3a255a;
    }

    .profile-description h2 {
      color: #f3c2b0;
      font-size: 1.8rem;
      margin-bottom: 20px;
    }

    .profile-description p {
      line-height: 1.7;
      font-size: 1rem;
      color: #f8f0e3;
    }

    .back-link {
      display: inline-block;
      margin-top: 40px;
      color: #bbb;
      text-decoration: underline;
    }

    .back-link:hover {
      color: #fff;
    }

    @media (max-width: 768px) {
      .profile-header {
        flex-direction: column;
        align-items: center;
      }

      .profile-info {
        text-align: center;
      }

      .gallery-images {
        justify-content: center;
      }
    }