/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&display=swap');

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: #0a0a0a;  
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 6%;
    background: rgba(20, 10, 30, 0.95);  
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #d4af37;  
    position: sticky;
    top: 0;
    z-index: 1000;
}

 
.logo a {
    text-decoration: none;
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.logo span {
    color: #d4af37; 
}

 
.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #e0e0e0;
    font-size: 16px;
    font-weight: 400;
    transition: 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: #d4af37;
}

 
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.theme-icon {
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

.btn-call {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #d4af37, #f2d06b);
    color: #000;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: 0.4s ease;
}

.btn-call:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.menu-toggle {
    display: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #1a0a25;
        flex-direction: column;
        text-align: center;
        padding: 40px 0;
        gap: 30px;
        clip-path: circle(0% at 50% 0%);  
        transition: 0.6s ease-in-out;
    }

    .nav-links.open {
        clip-path: circle(150% at 50% 0%);
    }

    .btn-call span {
        display: none;  
    }
    
    .btn-call {
        padding: 10px 15px;
    }
}


/*------------------*/

 
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('img/banner.webp') no-repeat center center/cover;
    color: white;
    overflow: hidden;
}

 
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 12, 41, 0.7), rgba(48, 43, 99, 0.8), rgba(15, 12, 41, 0.9));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
}

 
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.dot {
    height: 8px;
    width: 8px;
    background-color: #2ecc71;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px #2ecc71;
    animation: blink 1.5s infinite;
}

 
.hero-content h1 {
    font-size: clamp(40px, 8vw, 85px);  
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: #d4af37;  
    display: block;
}

.hero-content p {
    font-size:22px;
    color: #ddd;
    margin-bottom: 40px;
    line-height: 1.6;
}

 
.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary, .btn-whatsapp {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.4s ease;
}

.btn-primary {
    background: #6c5ce7;
    color: white;
    box-shadow: 0 10px 20px rgba(108, 92, 231, 0.3);
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-primary:hover, .btn-whatsapp:hover {
    transform: translateY(-5px);
    filter: brightness(1.1);
}

 
.scroll-down {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    font-size: 12px;
    letter-spacing: 3px;
}

@keyframes blink {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}

 
@media (max-width: 768px) {
    .hero-content h1 { font-size: 45px; }
    .hero-btns { flex-direction: column; width: 100%; align-items: center; }
    .btn-primary, .btn-whatsapp { width: 90%; justify-content: center; }
}


 
p{font-size:16px; line-height:26px;}
a{color:#FF0000; text-decoration:none}


.info-section {
    padding: 80px 0;
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

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

 
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.sub-heading {
    color: #6c5ce7;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
}

.section-title h2 {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    margin-top: 10px;
}

.section-title h2 span {
    color: #6c5ce7;
}

.title-line {
    width: 60px;
    height: 3px;
    background: #6c5ce7;
    margin: 15px auto;
}

 
.info-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}

 
.content-box p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.highlight-quote {
    border-left: 5px solid #6c5ce7;
    padding-left: 20px;
    margin: 30px 0;
}

.highlight-quote h3 {
    font-size: 22px;
    font-weight: 700;
    color: #222;
}

.cta-note {
    background: #f8f7ff;
    padding: 20px;
    border-radius: 10px;
    border: 1px dashed #6c5ce7;
}

 
.features-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    color: #6c5ce7;
}

.card-header i { font-size: 24px; }
.card-header h4 { font-size: 20px; font-weight: 700; color: #222; }

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

.feature-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.icon-check {
    width: 25px;
    height: 25px;
    background: #6c5ce7;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.text strong { display: block; font-size: 16px; color: #222; }
.text p { font-size: 13px; color: #777; margin: 0; }

 
.action-footer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.btn-call, .btn-whatsapp {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-call { background: #6c5ce7; }
.btn-whatsapp { background: #25d366; }

.btn-call:hover, .btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

 
@media (max-width: 992px) {
    .info-grid { grid-template-columns: 1fr; }
    .features-card { order: -1; }  
}

@media (max-width: 600px) {
    .action-footer { flex-direction: column; width: 100%; }
    .btn-call, .btn-whatsapp { justify-content: center; }
}

 



.premium-process {
    padding: 100px 0;
    background: #141044;  
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #fff;
    overflow: hidden;
}

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

.header-content {
    text-align: center;
    margin-bottom: 70px;
}

.badge {
    background: linear-gradient(90deg, #6c5ce7, #a29bfe);
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: inline-block;
}

.header-content h2 {
    font-size: clamp(30px, 5vw, 48px);
    margin: 20px 0;
}

.header-content h2 span {
    color: #a29bfe;
    background: linear-gradient(to right, #a29bfe, #6c5ce7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-content p {
    color: #999;
    max-width: 650px;
    margin: 0 auto;
}

 
.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.glass-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    transition: 0.5s ease;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top right, var(--clr), transparent 70%);
    opacity: 0;
    transition: 0.5s;
    z-index: 0;
}

.glass-card:hover::before {
    opacity: 0.2;
}

.glass-card:hover {
    transform: translateY(-15px);
    border-color: var(--clr);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.card-inner {
    position: relative;
    z-index: 1;
}

.number {
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 60px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    transition: 0.5s;
}

.glass-card:hover .number {
    color: rgba(255, 255, 255, 0.1);
    transform: scale(1.2);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--clr);
    box-shadow: inset 0 0 15px rgba(255,255,255,0.05);
    transition: 0.5s;
}

.glass-card:hover .icon-circle {
    background: var(--clr);
    color: #fff;
    box-shadow: 0 0 25px var(--clr);
}

.glass-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
    letter-spacing: 1px;
}

.glass-card p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.7;
}

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


 
.premium-gallery {
    padding: 100px 0;
    background: #050505;  
    font-family: 'Tenor Sans', sans-serif;
    color: #fff;
}

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

 
.gallery-title-box {
    text-align: center;
    margin-bottom: 70px;
}

.luxury-label {
    color: #d4af37;
    letter-spacing: 5px;
    font-size: 12px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.gallery-title-box h2 {
    font-family: 'Marcellus', serif;
    font-size: 48px;
    font-weight: 400;
}

.gallery-title-box h2 span {
    color: #d4af37;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.divider .line {
    width: 50px;
    height: 1px;
    background: #d4af37;
}

.divider i { color: #d4af37; font-size: 14px; }

 
.luxury-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

 
.luxury-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background: #111;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.image-container {
    height: 450px;
    overflow: hidden;
    position: relative;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s;
}

.top-tags {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 5;
}

.tag-elite { background: #d4af37; color: #000; padding: 5px 15px; border-radius: 5px; font-weight: bold; font-size: 10px; }
.tag-new { background: #ff3366; color: #fff; padding: 5px 15px; border-radius: 5px; font-weight: bold; font-size: 10px; }
.tag-age { background: rgba(0,0,0,0.7); backdrop-filter: blur(5px); padding: 5px 15px; border-radius: 5px; font-size: 10px; }

 
.luxury-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgb(0 0 0 / 73%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 20px;
    transform: translateY(10px);
    transition: 0.5s;
}

.luxury-card:hover {
    border-color: #d4af37;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.luxury-card:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.info-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 5px; }
.info-header h3 { font-size: 22px; color: #fff; }
.verified { color: #d4af37; font-size: 18px; }

.location { font-size: 13px; color: #bbb; margin-bottom: 15px; }

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
}

.status-live {
    font-size: 11px;
    color: #2ecc71;
    display: flex;
    align-items: center;
    gap: 5px;
}

.status-live::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #2ecc71;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.profile-link {
    color: #d4af37;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

 
.gallery-action { text-align: center; margin-top: 60px; }
.explore-btn {
    background: linear-gradient(45deg, #d4af37, #f2d06b);
    color: #000;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.4s;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.explore-btn:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(212, 175, 55, 0.5); }

 
@media (max-width: 768px) {
    .gallery-title-box h2 { font-size: 32px; }
    .luxury-grid { grid-template-columns: 1fr; }
}


 
:root {
    --gold: #d4af37;
    --dark-bg: #111111;
    --glass-bg: rgba(255, 255, 255, 0.05);
}

.luxury-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #000 url('img/banner-2.webp') center/cover;
    display: flex;
    align-items: center;
    padding: 80px 8%;
    color: #fff;
    overflow: hidden;
    z-index: 1;
}

.hero-bg-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.9) 30%, rgba(0,0,0,0.4) 100%);
    z-index: -1;
}

.hero-wrapper {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

 
.hero-text-content { flex: 1.2; min-width: 320px; }

.premium-tag {
    display: inline-block;
    padding: 6px 15px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    font-size: 13px;
    color: #ccc;
    margin-bottom: 20px;
    background: var(--glass-bg);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.gold-text { color: var(--gold); }
.sub-title { font-size: 0.7em; font-weight: 400; color: #fff; }

.hero-para {
    color: #bbb;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 550px;
    margin-bottom: 30px;
}

 
.stats-container { display: flex; gap: 30px; margin-bottom: 40px; }
.stat-box strong { font-size: 24px; color: var(--gold); display: block; }
.stat-box span { font-size: 14px; color: #888; text-transform: uppercase; }

 
.action-btns { display: flex; gap: 15px; flex-wrap: wrap; }

.btn-call, .btn-wa {
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    color: #fff;
}

.btn-call { background: #7158e2; box-shadow: 0 4px 15px rgba(113, 88, 226, 0.4); }
.btn-wa { background: #25d366; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }

.btn-call:hover, .btn-wa:hover { transform: translateY(-3px); filter: brightness(1.2); }

 
.hero-image-side { flex: 0.8; display: flex; justify-content: center; position: relative; }

.profile-circle {
    position: relative;
    width: 380px; height: 380px;
    border-radius: 50%;
    border: 10px solid rgba(255,255,255,0.05);
    z-index: 2;
}

.profile-circle img {
    width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
}

.verified-label {
    position: absolute;
    bottom: 20px; right: -10px;
    background: #fff; color: #000;
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center; gap: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.verified-label i { color: #7158e2; font-size: 22px; }
.verified-label p { font-size: 14px; font-weight: 700; line-height: 1.2; }
.verified-label span { font-size: 11px; font-weight: 400; color: #666; }

.scroll-down {
    margin-top: 50px; font-size: 12px; letter-spacing: 3px; display: flex; align-items: center; gap: 10px; color: #555;
}
.scroll-down .line { width: 50px; height: 1px; background: #333; }

 
@media (max-width: 992px) {
    .luxury-hero { padding: 100px 5%; text-align: center; }
    .hero-wrapper { flex-direction: column; }
    .hero-text-content { order: 2; }
    .hero-image-side { order: 1; }
    .stats-container, .action-btns { justify-content: center; }
    .profile-circle { width: 300px; height: 300px; }
    .hero-para { margin: 0 auto 30px; }
}

 

.premium-models-grid {
    display: block;
    width: 100%;
    padding: 100px 0;
    background:#141044;  
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    clear: both;  
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.top-label {
    color: #f1c40f;  
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    display: block;
}

.section-header h2 {
    font-size: clamp(26px, 4vw, 36px);
    margin: 10px 0;
    font-weight: 800;
}

.text-gradient {
    color: #f1c40f;  
}

.section-header p { 
    color: #888; 
    font-size: 15px; 
}

 
.nav-btn {
    background: transparent;
    border: 1px solid #333;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-left: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.nav-btn.active, .nav-btn:hover {
    background: #f1c40f;
    border-color: #f1c40f;
    color: #000;
}

 
.grid-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.model-luxury-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(241, 196, 15, 0.1);  
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}

.model-luxury-card:hover {
    transform: translateY(-12px);
    border-color: #f1c40f;
    box-shadow: 0 20px 40px rgba(241, 196, 15, 0.15);
}

.image-wrapper {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: 0.8s ease;
}

.model-luxury-card:hover .image-wrapper img {
    transform: scale(1.1);
}

 
.tag-new { background: #2ecc71; color: #fff; padding: 4px 10px; border-radius: 4px; font-size: 10px; font-weight: bold; }
.tag-top { background: #f1c40f; color: #000; padding: 4px 10px; border-radius: 4px; font-size: 10px; font-weight: bold; }
.tag-vip { background: #ffffff; color: #000; padding: 4px 10px; border-radius: 4px; font-size: 10px; font-weight: bold; }

 
.bottom-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,1) 10%, transparent 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.model-meta h3 { font-size: 20px; color: #fff; margin-bottom: 2px; }
.model-meta span { font-size: 12px; color: #f1c40f; }

.heart-badge {
    background: rgba(241, 196, 15, 0.15);
    backdrop-filter: blur(5px);
    padding: 5px 12px;
    border-radius: 50px;
    color: #ff4757;
    font-size: 13px;
    font-weight: bold;
    border: 1px solid rgba(241, 196, 15, 0.3);
}

 
.card-action {
    padding: 18px 20px;
    background: rgba(255,255,255,0.01);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.card-action a {
    text-decoration: none;
    color: #bbb;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.model-luxury-card:hover .card-action a {
    color: #f1c40f;
}

.arrow-circle {
    width: 32px;
    height: 32px;
    background: rgba(241, 196, 15, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f1c40f;
    font-size: 12px;
    transition: 0.3s;
}

.model-luxury-card:hover .arrow-circle {
    background: #f1c40f;
    color: #000;
}

 
@media (max-width: 1100px) {
    .grid-layout { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 650px) {
    .grid-layout { grid-template-columns: 1fr; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 20px; }
} 


 

 
.connect-section {
    padding: 80px 0;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    display: block;
    width: 100%;
}

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

 
.connect-content { flex: 1; }

.step-label {
    color: #f1c40f;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.connect-title {
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 800;
    color: #1a1a1a;
    margin: 15px 0;
    line-height: 1.2;
}

.gold-text { color: #f1c40f; }

.connect-desc {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

 
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #444;
    font-size: 15px;
}

.check-icon {
    width: 28px;
    height: 28px;
    background: #f1c40f20;  
    color: #f1c40f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

 
.connect-card-wrapper {
    flex: 0.8;
    display: flex;
    justify-content: center;
}

.contact-glass-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    text-align: center;
    border: 1px solid #f1f1f1;
    max-width: 400px;
    width: 100%;
    transition: 0.4s;
}

.contact-glass-card:hover { transform: translateY(-10px); }

.icon-circle {
    width: 70px;
    height: 70px;
    background: #f1c40f;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(241, 196, 15, 0.3);
}

.contact-glass-card h3 { font-size: 24px; font-weight: 800; color: #1a1a1a; }
.contact-glass-card p { color: #888; margin: 10px 0 30px; font-size: 14px; }

.card-btns { display: flex; flex-direction: column; gap: 15px; }

.btn-call, .btn-whatsapp {
    text-decoration: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
    color: #fff;
}

.btn-call { background: #f1c40f; box-shadow: 0 5px 15px rgba(241, 196, 15, 0.4); }
.btn-whatsapp { background: #2ecc71; box-shadow: 0 5px 15px rgba(46, 204, 113, 0.4); }

.btn-call:hover, .btn-whatsapp:hover { opacity: 0.9; transform: scale(1.02); }

.availability {
    display: block;
    margin-top: 20px;
    font-size: 12px;
    color: #bbb;
}

 
@media (max-width: 992px) {
    .connect-container { flex-direction: column; text-align: center; }
    .features-grid { justify-items: center; }
    .connect-card-wrapper { width: 100%; }
}

@media (max-width: 500px) {
    .features-grid { grid-template-columns: 1fr; }
    .contact-glass-card { padding: 30px 20px; }
}



 

.category-section {
    padding: 60px 20px;
    text-align: center;
	background:#eeeeee;
}

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

.sub-heading {
    color: #8e44ad;  
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: bold;
}

.main-heading {
    font-size: 36px;
    margin: 10px 0;
}

.main-heading span {
    color: #8e44ad;  
}

.description {
    color: #666;
    margin-bottom: 20px;
}

.divider {
    width: 60px;
    height: 3px;
    background-color: #8e44ad;
    margin: 0 auto 40px;
}

 
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

 
.card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.card:hover {
    transform: translateY(-10px);
}

.image-box {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
}

 
.image-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.rank {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #8e44ad;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    line-height: 30px;
    font-weight: bold;
    z-index: 2;
}

.views {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.6);
    color: #f1c40f;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    z-index: 2;
}

.content {
    position: relative;
    z-index: 2;
    padding: 20px;
    text-align: left;
    color: white;
}

.badge {
    background: #8e44ad;
    padding: 4px 8px;
    font-size: 10px;
    border-radius: 4px;
    font-weight: bold;
}

.content h3 {
    margin: 10px 0 5px;
    font-size: 18px;
}

.content p {
    font-size: 13px;
    color: #ccc;
}


  
.premium-booking-section {
    background: #000;  
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

 
.premium-booking-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(142, 68, 173, 0.3) 0%, transparent 70%);
    top: 10%;
    right: 5%;
    z-index: 1;
}

.glass-container {
    max-width: 1100px;
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 60px;
    align-items: center;
    z-index: 2;
}

 
.content-left { flex: 1.2; }

.live-status {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 16px;
    border-radius: 50px;
    color: #fff;
    font-size: 13px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 25px;
}

.pulse-ring {
    height: 10px;
    width: 10px;
    background: #2ecc71;
    border-radius: 50%;
    margin-right: 12px;
    position: relative;
}

.pulse-ring::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #2ecc71;
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

.hero-text {
    font-size: clamp(34px, 5vw, 52px);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 700;
}

.accent-color {
    color: #a29bfe;
    text-transform: uppercase;
}

.hero-sub {
    color: #888;
    line-height: 1.6;
    margin-bottom: 35px;
    font-size: 16px;
}

.feature-pills { display: flex; gap: 12px; flex-wrap: wrap; }
.pill {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #ddd;
    padding: 8px 18px;
    border-radius: 12px;
    font-size: 14px;
}

 
.booking-card {
    flex: 0 1 380px;
    position: relative;
    perspective: 1000px;
}

.inner-card {
    background: rgba(15, 15, 18, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 35px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.call-icon-wrap {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 26px;
    color: #fff;
}

.inner-card h3 { color: #fff; margin-bottom: 5px; }
.inner-card p { color: #666; font-size: 14px; }

.number-box {
    margin: 25px 0;
    padding: 10px;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
}

.number-box a {
    color: #a29bfe;
    font-size: 28px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 1px;
}

.action-stack { display: flex; flex-direction: column; gap: 15px; }

.btn-main {
    padding: 15px;
    border-radius: 18px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-call { background: #fff; color: #000; }
.btn-whatsapp { background: #25d366; color: #fff; }

.btn-main:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.3); }

.secure-footer {
    display: block;
    margin-top: 25px;
    font-size: 12px;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 1px;
}

 
@media (max-width: 900px) {
    .glass-container { flex-direction: column; text-align: center; }
    .hero-sub { margin: 0 auto 35px; }
    .feature-pills { justify-content: center; }
    .booking-card { width: 100%; max-width: 400px; }
}

 
.premium-services-grid {
    background-color: #fdfdfd;  
    padding: 80px 5%;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

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

.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-header .sub-line {
    color: #8e44ad;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 13px;
    text-transform: uppercase;
}

.services-header h2 {
    font-size: 36px;
    margin: 10px 0;
    color: #1a1a1a;
}

.services-header h2 span {
    color: #8e44ad;
}

.services-header p {
    color: #777;
    max-width: 600px;
    margin: 0 auto;
}

 
.features-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);  
    gap: 25px;
}

.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
}

 
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(142, 68, 173, 0.1);
    border-color: #8e44ad;
}

 
.feature-card.highlighted {
    background: linear-gradient(135deg, #ffffff 0%, #f9f4ff 100%);
    border-bottom: 4px solid #8e44ad;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(142, 68, 173, 0.1);
    color: #8e44ad;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 24px;
    margin-bottom: 25px;
    transition: 0.3s;
}

.feature-card:hover .icon-box {
    background: #8e44ad;
    color: #fff;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #222;
}

.feature-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    text-decoration: none;
    color: #8e44ad;
    font-weight: 600;
    font-size: 14px;
    transition: 0.2s;
}

.read-more:hover {
    letter-spacing: 1px;
}

 
@media (max-width: 1024px) {
    .features-wrapper {
        grid-template-columns: repeat(2, 1fr);  
    }
}

@media (max-width: 600px) {
    .features-wrapper {
        grid-template-columns: 1fr;  
    }
    .services-header h2 {
        font-size: 28px;
    }
}



 
.special-feature-section {
    background-color: #f9f9fb;  
    padding: 80px 5%;
    font-family: 'Poppins', sans-serif;
}

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

 
.sf-header {
    text-align: center;
    margin-bottom: 50px;
}

.sf-sub {
    color: #8e44ad;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
}

.sf-header h1 {
    font-size: 38px;
    margin: 10px 0;
    color: #222;
}

.sf-header h1 span {
    color: #8e44ad;
}

.sf-line {
    width: 50px;
    height: 3px;
    background: #8e44ad;
    margin: 15px auto;
}

 
.sf-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

 
.sf-card {
    background: #fff;
    border-radius: 25px;
    padding: 40px;
    min-height: 400px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.sf-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(142, 68, 173, 0.1);
}

 
.sf-badge {
    background: #f1e6ff;
    color: #8e44ad;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    width: fit-content;
    margin-bottom: 20px;
}

.sf-text-card h2 {
    font-size: 26px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.sf-text-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 5px;
}

.sf-points {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.sf-points li {
    font-size: 14px;
    color: #444;
}

.sf-points i {
    color: #2ecc71;
    margin-right: 8px;
}

 
.sf-image-card {
    background-size: cover;
    background-position: center;
    padding: 0;
    justify-content: flex-end;
}

.sf-glass-info {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    margin: 20px;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.sf-check-icon {
    width: 40px;
    height: 40px;
    background: #2ecc71;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.sf-check-icon.purple { background: #8e44ad; }

.sf-count {
    font-weight: 700;
    font-size: 16px;
    display: block;
}

.sf-glass-info p {
    font-size: 12px;
    margin: 0;
    opacity: 0.9;
}

 
.sf-light-purple {
    background: #fdfbff;
    border: 1px solid #f1e6ff;
}

 
.sf-btn-group {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.sf-btn-purple {
    background: #8e44ad;
    color: #fff;
    padding: 12px 25px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.sf-btn-outline {
    border: 1px solid #8e44ad;
    color: #8e44ad;
    padding: 12px 25px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

 
@media (max-width: 992px) {
    .sf-grid {
        grid-template-columns: 1fr;
    }
    .sf-card {
        min-height: 350px;
    }
}



 
.arp-final-cta-section {
    background-color: #f9f9fb; 
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
}

.arp-cta-container {
    max-width: 1000px;
    width: 100%;
}

 
.arp-cta-text-content {
    text-align: center;
    margin-bottom: 50px;
}

.arp-cta-heading {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 700;
}

.arp-cta-heading span {
    color: #8e44ad;  
}

.arp-cta-paragraph {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

 
.arp-contact-bar-wrap {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.arp-contact-bar {
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);  
    width: 100%;
    max-width: 650px;
    border: 1px solid #f0f0f0;
}

.arp-info-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.arp-icon-box {
    width: 60px;
    height: 60px;
    background: #f4f0ff;  
    color: #8e44ad;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.arp-text-group h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin: 0;
    font-weight: 600;
}

.arp-text-group p {
    color: #888;
    margin: 3px 0 0 0;
    font-size: 14px;
}

 
.arp-contact-btn {
    background: #8e44ad;  
    color: #ffffff;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 18px;
    font-weight: 600;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(142, 68, 173, 0.2);
}

.arp-contact-btn:hover {
    background: #732d91;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(142, 68, 173, 0.3);
}

 
@media (max-width: 768px) {
    .arp-contact-bar {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 30px 20px;
    }
    
    .arp-info-group {
        flex-direction: column;
        gap: 10px;
    }

    .arp-cta-heading {
        font-size: 28px;
    }
}


 
.blr-footer-section {
    background-color: #0d0d12;  
    padding: 70px 0 30px 0;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.blr-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

 
.blr-footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.blr-footer-logo {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
}

.blr-footer-logo span {
    color: #a29bfe;  
}

.blr-tagline {
    color: #888;
    max-width: 450px;
    font-size: 14px;
    margin-top: 10px;
}

.blr-cta-side {
    display: flex;
    gap: 15px;
}

.blr-f-btn {
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.blr-f-call { background: #fff; color: #000; }
.blr-f-wa { background: #25d366; color: #fff; }
.blr-f-btn:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.3); }

.blr-footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.05);
    margin-bottom: 50px;
}

 
.blr-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.blr-col-title {
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-left: 15px;
}

.blr-col-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 18px;
    background: #a29bfe;
}

.blr-f-links { list-style: none; padding: 0; }
.blr-f-links li { margin-bottom: 12px; }
.blr-f-links a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}
.blr-f-links a:hover { color: #a29bfe; padding-left: 5px; }

 
.blr-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.03);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid rgba(255,255,255,0.05);
}

.blr-c-icon {
    width: 40px;
    height: 40px;
    background: rgba(162, 155, 254, 0.1);
    color: #a29bfe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.blr-c-text span { display: block; font-size: 12px; color: #666; }
.blr-c-text p { margin: 0; font-size: 14px; color: #ddd; font-weight: 500; }

 
.blr-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    flex-wrap: wrap;
    gap: 20px;
}

.blr-social-links { display: flex; gap: 15px; }
.blr-social-links a {
    width: 35px; height: 35px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}
.blr-social-links a:hover { background: #a29bfe; color: #fff; }

.blr-copy { font-size: 13px; color: #666; }

.blr-legal {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

 
@media (max-width: 900px) {
    .blr-footer-grid { grid-template-columns: 1fr 1fr; }
    .blr-footer-top { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
    .blr-footer-grid { grid-template-columns: 1fr; }
    .blr-footer-bottom { flex-direction: column; text-align: center; }
}

 
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #8e44ad;  
    color: white;
    border: none;
    border-radius: 50%;  
    cursor: pointer;
    display: none;  
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.scroll-top-btn:hover {
    background-color: #732d91;
    transform: translateY(-5px);  
    box-shadow: 0 6px 20px rgba(142, 68, 173, 0.4);
}

 
.scroll-top-btn i {
    pointer-events: none;
}
 
 
 
 
 