* { margin: 0; padding: 0; box-sizing: border-box; }
body {font-family: Arial, Helvetica, sans-serif;background: #08144e;color: #f4e9d8;}

header {background: #0b072e;text-align: center;padding: 18px 0;border-bottom: 5px solid #c9a66b;}

.p {
font-size: 17px;
margin-bottom: 15px;
text-align: justify;
line-height: 26px;
font-weight: 400;
color: #ffff;
}

.logo {
font-size: 2.8rem;
font-weight: bold;
color: #ffffff;
letter-spacing: 3px;
}

.subtext {
color: #c9a66b;
font-size: 1.05rem;
margin-top: 6px;
text-align: center;
}

.nav {background: #03235e;padding: 12px 0;text-align: center;border-bottom: 3px solid #c9a66b;}

.nav button {
background: #c9a66b;
color: #1a0f08;
border: none;
padding: 10px 28px;
margin: 0 10px;
font-weight: bold;
border-radius: 4px;
cursor: pointer;
}

/* ===== HERO BANNER ===== */
.hero-banner {
height: 580px;
background: url('../images/banner.jpg') center/cover no-repeat;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
position: relative;
}

.hero-content {
max-width: 800px;
padding: 0 20px;
}

.hero-content h1 {
font-size: 3.2rem;
color: #fff;
margin-bottom: 15px;
text-shadow: 0 0 15px rgba(0,0,0,0.8);
}

.hero-content p {
font-size: 1.35rem;
margin-bottom: 30px;
color: #f4e9d8;
}

.cta-btn {
background: #c9a66b;
color: #1a0f08;
padding: 16px 45px;
font-size: 1.4rem;
font-weight: bold;
border: none;
border-radius: 6px;
cursor: pointer;
display: inline-block;
text-decoration: none;
}

.cta-btn:hover {
background: #f4e9d8;
transform: scale(1.05);
}

.main-heading {background: #050c40;text-align: center;padding: 20px;font-size: 1.8rem;color: #f4e9d8;}

  .section-title {
      text-align: center;
      margin-bottom: 50px;
      font-size: 2.4rem;
      background: linear-gradient(90deg, #ff3366, #ff6699);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      max-width: 1250px;
      margin: 0 auto;
    }

    .escort-card {
      background: #1a1a1a;
      border-radius: 16px;
      overflow: hidden;
      transition: all 0.4s ease;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
    }

    .escort-card:hover {
      transform: translateY(-15px);
      box-shadow: 0 25px 35px rgba(255, 51, 102, 0.25);
    }

    .escort-image {
      height: 380px;
      position: relative;
    }

    .escort-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .escort-card:hover .escort-image img {
      transform: scale(1.08);
    }

    .escort-info {
      padding: 22px;
      text-align: center;
    }

    .escort-info h3 {
      font-size: 1.55rem;
      margin-bottom: 15px;
      color: #fff;
    }

    .view-more {
      display: inline-block;
      padding: 10px 26px;
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
      text-decoration: none;
      border-radius: 50px;
      font-size: 0.98rem;
      transition: all 0.3s ease;
      border: 1px solid rgba(255, 255, 255, 0.25);
    }

    .view-more:hover {
      background: #ff3366;
      border-color: #ff3366;
      transform: scale(1.05);
    }

    .bg-red    { border-top: 5px solid #ff3366; }
    .bg-blue   { border-top: 5px solid #3399ff; }
    .bg-purple { border-top: 5px solid #c766ff; }
.content { max-width: 1250px; margin: 40px auto; padding: 0 25px; line-height: 1.7; }

 .btn-container {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 15px 25px;
      font-size: 18px;
      font-weight: bold;
      border-radius: 50px;
      text-decoration: none;
      color: white;
      transition: all 0.3s;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    /* Call Button */
    .call-btn {
      background: linear-gradient(135deg, #00c853, #00b140);
    }
    .call-btn:hover {
      transform: scale(1.1);
      background: linear-gradient(135deg, #00b140, #009933);
    }

    /* WhatsApp Button */
    .wa-btn {
      background: linear-gradient(135deg, #25D366, #1EBE5B);
    }
    .wa-btn:hover {
      transform: scale(1.1);
      background: linear-gradient(135deg, #1EBE5B, #25D366);
    }

    .btn i {
      font-size: 24px;
    }
    
.book-btn {
display: block;
width: fit-content;
margin: 40px auto;
background: #c9a66b;
color: #1a0f08;
padding: 18px 55px;
font-size: 1.45rem;
font-weight: bold;
text-decoration: none;
border-radius: 5px;
}
.rates-section {
    padding: 60px 20px;
    background: #0f0f0f;
  }

  .section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.6rem;
    background: linear-gradient(90deg, #ff3366, #ff6699);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .rates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .rate-card {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
  }

  .rate-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(255, 51, 102, 0.25);
    border-color: #ff3366;
  }

  .popular {
    border-color: #ffd700;
    transform: scale(1.08);
  }

  .popular-badge {
    position: absolute;
    top: 20px;
    right: -25px;
    background: #ffd700;
    color: #000;
    padding: 6px 40px;
    font-size: 0.85rem;
    font-weight: bold;
    transform: rotate(45deg);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  }

  .rate-header h3 {
    font-size: 1.4rem;
    color: #ddd;
    margin-bottom: 20px;
  }

  .rate-price {
    font-size: 3.2rem;
    font-weight: bold;
    color: #ff3366;
    margin: 15px 0;
  }

  .rupee {
    font-size: 2rem;
    vertical-align: super;
  }

  .rate-duration p {
    font-size: 1.1rem;
    color: #aaa;
    margin: 15px 0 25px 0;
  }

  .rate-footer {
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #ff6699;
    font-size: 1rem;
  }

  .rate-footer span {
    font-style: italic;
  }

.faq { max-width: 900px; margin: 40px auto; padding: 0 20px; }

.faq-item {
margin-bottom: 20px;
background: #2c1a0f;
padding: 15px 20px;
border-radius: 6px;
}

.faq-question {
color: #c9a66b;
font-weight: bold;
margin-bottom: 8px;
}

footer {
background: #1a0f08;
text-align: center;
padding: 30px 20px;
border-top: 4px solid #c9a66b;
font-size: 0.95rem;
}

footer p {
font-size: 17px;
margin-bottom: 15px;
text-align: center;
line-height: 26px;
font-weight: 400;
color: #ffff;
}



@media (max-width: 1100px) { .grid { grid-template-columns: repeat(4, 1fr); }}
@media (max-width: 768px) { 
.grid { grid-template-columns: repeat(3, 1fr); }
.hero-content h1 { font-size: 2.5rem; }
}
