body {
    background: #000;
    color: #fff;
    font-family: Merriweather, Georgia, serif;
    margin: 0
}

.bg-black {
    background: #000
}

.text-white {
    color: #fff
}

.font-serif {
    font-family: Merriweather, Georgia, serif
}

footer,
header,
main {
    opacity: 0
}

.css-ready footer,
.css-ready header,
.css-ready main {
    opacity: 1;
    transition: opacity .1s
}

@media (max-width:639px) {
    section[style*="padding:70px"] {
        padding-top: 30px !important
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(250, 0, 125, .3)
    }

    50% {
        box-shadow: 0 0 50px rgba(250, 0, 125, .5)
    }
}

@keyframes gradient-shift {
    0% {
        background-position: 0 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0 50%
    }
}

@keyframes float-slow {

    0%,
    100% {
        transform: translateY(0) rotate(0)
    }

    50% {
        transform: translateY(-15px) rotate(1deg)
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all .7s cubic-bezier(.25, .46, .45, .94)
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0)
}

.fade-up-d1 {
    transition-delay: .15s
}

.fade-up-d2 {
    transition-delay: .3s
}

.fade-up-d3 {
    transition-delay: .45s
}

.hero-gradient {
    background: linear-gradient(135deg, #fff 0, #ffffff 40%, #ffa700 60%, #ffffff 80%, #fff 100%);
    background-size: 300% 300%;
    animation: gradient-shift 6s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.bg-dots {
    background-image: radial-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 40px 40px
}

.prose2 h2 {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: #fed161;
    font-weight: 700;
    margin: 2rem 0 1rem;
    line-height: 1.4
}

.prose2 h3 {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: #00d7fa;
    font-weight: 700;
    margin: 1.8rem 0 .8rem;
    line-height: 1.4
}

.glow-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffffff 30%, #ffa700 50%, #ffffff 70%, transparent);
    opacity: .3
}

.banner-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all .5s
}

.banner-card:hover {
    transform: scale(1.01);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5)
}

.banner-card img {
    transition: transform .8s
}

.banner-card:hover img {
    transform: scale(1.05)
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #e8b4b8, #d4af87);
    transition: all .3s ease;
    transform: translateX(-50%)
}

.nav-link.active::after,
.nav-link:hover::after {
    width: 60%
}

.ad-container {
    max-width: 920px;
    margin: 0 auto;
}

.ad {
    background: #2c2c2c;
    border: 1px solid #444;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    gap: 16px;
}

.photo {
    width: 120px;
    height: 155px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #d81b60;
}

.photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ad-content {
    flex: 1;
    min-width: 0;
}

.ad-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.title {
    font-size: 17px;
    font-weight: 600;
    color: #ff4d94;
    line-height: 1.4;
    margin: 0;
    text-decoration: none;
    flex: 1;
}

.title:hover {
    text-decoration: underline;
    color: #faf7fc;
}

.age-location {
    font-size: 14px;
    color: #bbb;
    text-align: right;
    min-width: 130px;
    margin-left: 10px;
}

.description {
    font-size: 15px;
    line-height: 1.5;
    color: #ddd;
    margin-bottom: 14px;
}

.buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.btn {
    padding: 11px 18px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14.5px;
    min-width: 110px;
}

.btn-call {
    background: #2e387d;
    color: white;
}

.btn-whatsapp {
    background: #128C7E;
    color: white;
}

.tags {
    margin-top: 14px;
}

.tag {
    display: inline-block;
    background: rgba(103, 232, 249, 0.25);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    margin: 4px 6px 4px 0;
}

.load-more {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 35px auto 20px;
    padding: 15px;
    background: rgba(103, 232, 249, 0.3);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16.5px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
}

.note {
    text-align: center;
    font-size: 13.5px;
    color: #999;
    margin-top: 20px;
    padding: 0 10px;
}

/* Mobile Responsive */
@media (max-width: 620px) {
    .ad {
        flex-direction: column;
        padding: 14px;
        gap: 14px;
    }

    .photo {
        width: 100%;
        height: 180px;
        max-width: 220px;
        margin: 0 auto;
    }

    .ad-header {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .age-location {
        text-align: left;
        min-width: auto;
        margin-left: 0;
    }

    .title {
        font-size: 16.5px;
    }

    .buttons {
        justify-content: center;
    }

    .btn {
        min-width: 48%;
        flex: 1;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    .ad {
        padding: 12px;
    }

    .photo {
        height: 170px;
    }
}

/* Desktop pe hide karo (768px se upar) */
@media (min-width: 768px) {
    .hidden {
        display: none;
    }
}

.models-section {
    padding: 3rem 1rem;
}

.models-header {
    text-align: center;
    margin-bottom: 3rem;
}

.models-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(236, 72, 153, 0.08);
    border: 1px solid rgba(236, 72, 153, 0.2);
    color: #fb660f;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 9999px;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.model-card {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.model-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.5);
}

.model-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #1a1a1a;
}

.main-image,
.hover-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: opacity 0.6s ease;
}

.hover-image {
    opacity: 0;
}

.model-card:hover .hover-image {
    opacity: 1;
}

.model-card:hover .main-image {
    opacity: 0;
}

.top-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 10;
}

.badge {
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 600;
}

.verified-badge {
    background: rgba(16, 64, 40, 0.9);
    color: #4ade80;
    border: 1px solid #4ade80;
}

.vip-badge {
    background: rgba(59, 44, 0, 0.9);
    color: #fbbf24;
    border: 1px solid #fbbf24;
}

.view-count {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #18BE80;
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 11px;
    border-radius: 6px;
    display: none;
    align-items: center;
    gap: 4px;
}

@media (min-width: 640px) {
    .view-count {
        display: flex;
    }
}

.card-content {
    padding: 16px;
}

.name-age {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.name-link {
    color: #d1d5db;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #18BE80;
    padding: 5px 12px;
    border-radius: 6px;
    transition: all 0.3s;
}

.name-link:hover {
    color: white;
    border-color: #fb660f;
}

.fav-btn {
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s;
}

.fav-btn:hover {
    color: #fb660f;
}

.location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #9ca3af;
    font-size: 13.5px;
    text-decoration: none;
    margin-bottom: 12px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag {
    font-size: 11.5px;
    padding: 4px 11px;
    border-radius: 6px;
    font-weight: 500;
}

.outcall-tag {
    background: #1f2937;
    color: white;
}

.incall-tag {
    background: #1c1c1c;
    color: #9ca3af;
}

.rating-tag {
    background: #1c1c1c;
    color: #9ca3af;
    display: none;
}

@media (min-width: 768px) {
    .rating-tag {
        display: inline-block;
    }
}

/* Responsive Grid */
@media (min-width: 768px) {
    .models-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .models-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1280px) {
    .models-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (min-width: 1536px) {
    .models-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}
/* ====================== JOURNEY SECTION CSS ====================== */

.journey-section {
   background: linear-gradient(160deg, #0a0a0a 0%, #111 50%, #0a0a0a 100%);
   padding: 80px 0;
   position: relative;
   overflow: hidden;
}

/* Subtle grid texture */
.journey-section::before {
   content: '';
   position: absolute;
   inset: 0;
   pointer-events: none;
   background-image: 
      linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
   background-size: 60px 60px;
   z-index: 1;
}

.journey-section > .max-w-7xl {
   position: relative;
   z-index: 2;
}

/* Header */
.journey-label {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   padding: 8px 20px;
   background: rgba(168, 85, 247, 0.08);
   border: 1px solid rgba(168, 85, 247, 0.15);
   border-radius: 9999px;
   color: #a855f7;
   font-size: 11px;
   font-weight: 700;
   letter-spacing: 2px;
   text-transform: uppercase;
}

.icon-wrapper {
   width: 24px;
   height: 24px;
   background: rgba(168, 85, 247, 0.15);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
}

.journey-title {
   font-size: clamp(1.5rem, 3.5vw, 2.2rem);
   font-weight: 800;
   color: #f5c16a;
   margin: 16px 0 10px;
   line-height: 1.2;
}

.journey-subtitle {
   color: #666;
   font-size: 15px;
   max-width: 560px;
   margin: 0 auto;
   line-height: 1.6;
}

/* Grid */
.journey-grid {
   display: grid;
   grid-template-columns: 1fr;
   gap: 24px;
}

/* Card Base */
.journey-card {
   background: linear-gradient(160deg, #1a0610, #1e0814);
   border: 1px solid rgba(255, 45, 120, 0.3);
   border-radius: 20px;
   padding: 32px 28px;
   box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Step Header */
.step-header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 24px;
}

.step-number {
   font-size: 56px;
   font-weight: 900;
   line-height: 1;
   letter-spacing: -4px;
   background: linear-gradient(135deg, #ff2d78, #ff8ba8);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   opacity: 0.85;                    /* ← Fixed: Ab clearly dikhega */
   text-shadow: 0 2px 8px rgba(255, 45, 120, 0.3);
}

.step-icon {
   width: 54px;
   height: 54px;
   border-radius: 14px;
   display: flex;
   align-items: center;
   justify-content: center;
   background: linear-gradient(135deg, rgba(103, 232, 249, 0.3), #ff7a6b);
   box-shadow: 0 8px 25px rgba(255, 45, 120, 0.25);
}

/* Content */
.card-content {
   margin-top: 8px;
}

.step-title {
   font-size: 1.15rem;
   font-weight: 700;
   color: #00ffff;
   margin: 0 0 12px 0;
}

.step-desc {
   color: #999;
   font-size: 0.92rem;
   line-height: 1.75;
   margin: 0;
}

/* Color Variants */
.blue-card {
   background: linear-gradient(160deg, #04101a, #061420);
   border-color: rgba(0, 170, 255, 0.3);
}
.blue-card .step-number { 
   background: linear-gradient(135deg, #0af, #40c4ff); 
   text-shadow: 0 2px 8px rgba(0, 170, 255, 0.3);
}
.blue-card .step-icon { background: linear-gradient(135deg, #0af, #40c4ff); }
.blue-card .step-title { color: #40c4ff; }

.green-card {
   background: linear-gradient(160deg, #041a10, #062018);
   border-color: rgba(0, 230, 138, 0.3);
}
.green-card .step-number { 
   background: linear-gradient(135deg, #00e68a, #50ffc0); 
   text-shadow: 0 2px 8px rgba(0, 230, 138, 0.3);
}
.green-card .step-icon { background: linear-gradient(135deg, #00e68a, #50ffc0); }
.green-card .step-title { color: #50ffc0; }

.orange-card {
   background: linear-gradient(160deg, #1a1006, #221808);
   border-color: rgba(255, 159, 10, 0.3);
}
.orange-card .step-number { 
   background: linear-gradient(135deg, #ff9f0a, #ffbf40); 
   text-shadow: 0 2px 8px rgba(255, 159, 10, 0.3);
}
.orange-card .step-icon { background: linear-gradient(135deg, #ff9f0a, #ffbf40); }
.orange-card .step-title { color: #ff4052; }

.purple-card {
   background: linear-gradient(160deg, #120820, #180c28);
   border-color: rgba(191, 90, 242, 0.3);
}
.purple-card .step-number { 
   background: linear-gradient(135deg, #bf5af2, #da8fff); 
   text-shadow: 0 2px 8px rgba(191, 90, 242, 0.3);
}
.purple-card .step-icon { background: linear-gradient(135deg, #bf5af2, #da8fff); }
.purple-card .step-title { color: #da8fff; }

.gold-card {
   background: linear-gradient(160deg, #1a1608, #201c0a);
   border-color: rgba(254, 209, 97, 0.3);
}
.gold-card .step-number { 
   background: linear-gradient(135deg, #fed161, #ffe08a); 
   text-shadow: 0 2px 8px rgba(254, 209, 97, 0.3);

}
.gold-card .step-icon { background: linear-gradient(135deg, #fed161, #ffe08a); }
.gold-card .step-title { color: #ffe08a; }

/* Responsive Grid */
@media (min-width: 640px) {
   .journey-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
   }
}

@media (min-width: 1024px) {
   .journey-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
   }
}

/* ==================== LOCATION GRID ==================== */
.location-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    padding: 0 10px;
}

/* Button Styling */
.location-btn {
    display: block;
    padding: 18px 20px;
    /* background-color: rgba(103, 232, 249, 0.12); */
    /* border: 2px solid #374151; */
    border-radius: 6px;
    text-align: center;
    font-size: 15.5px;
    font-weight: 600;
    color: #e5e7eb;
    text-decoration: none;
    transition: all 0.3s ease;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);*/
}

.location-btn:hover {
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(239, 68, 68, 0.3);
}

/* Responsive Behavior */
@media (max-width: 480px) {
    .location-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .location-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .location-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1025px) and (max-width: 1280px) {
    .location-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1281px) {
    .location-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (min-width: 1536px) {
    .location-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}