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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
}

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

 
.top-bar {
    background: linear-gradient(90deg, #4b134f, #c94b4b);
    color: white;
    padding: 10px 0;
    font-size: 13px;
    font-weight: 300;
}

.social-links a {
    color: white;
    margin-left: 15px;
    transition: 0.3s;
}

.social-links a:hover { color: #ff8a00; }

 
.main-nav {
    background: #000;
    padding: 15px 0;
    position: relative;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-box {
    background:linear-gradient(135deg, #ff5e14 0%, #b8860b 100%);
    color: white;
    font-weight: 700;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    font-size: 22px;
}

.logo-text h2 {
    color: white;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-text h2 span { color: #ff5e14; }

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

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s;
}

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

.nav-actions .btn-connect {
    background: linear-gradient(135deg, #ff5e14 0%, #b8860b 100%);
    color: #000;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.mobile-only { display: none; }

 
.nav-toggle { display: none; }

.nav-toggle-label {
    display: none;  
    cursor: pointer;
    padding: 10px;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    background: white;
    height: 2px;
    width: 25px;
    position: relative;
    transition: 0.3s;
}

.nav-toggle-label span::before { content: ''; bottom: 8px; }
.nav-toggle-label span::after { content: ''; top: 6px; }

 

@media screen and (max-width: 992px) {
    .top-bar, .nav-actions { display: none; }  

    .nav-toggle-label { display: block; }  

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #111;
        flex-direction: column;
        gap: 0;
        text-align: center;
        max-height: 0;  
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #222;
    }

    .nav-links li a {
        display: block;
        padding: 20px;
        font-size: 16px;
    }

    .mobile-only { display: block; }
    .btn-whatsapp { color: #25D366 !important; font-weight: bold; }

     
    .nav-toggle:checked ~ .nav-links {
        max-height: 500px;  
    }

    
    .nav-toggle:checked ~ .nav-toggle-label span { background: transparent; }
    .nav-toggle:checked ~ .nav-toggle-label span::before { transform: rotate(45deg); top: 0; }
    .nav-toggle:checked ~ .nav-toggle-label span::after { transform: rotate(-45deg); top: -2px; }
}


.hero-section {
    background: radial-gradient(circle at 20% 30%, #1a1a1a 0%, #0a0a0a 100%);
    padding: 80px 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-section .container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    flex: 1;
}

.badge {
    background: rgba(212, 175, 55, 0.1);
    color: #ff5e14;
    padding: 8px 15px;
    border-radius: 50px;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid #ff5e14;
}

.hero-content h1 {
    font-size: 55px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-content h1 span {
    color: #ff5e14;
}

.hero-content p {
    font-size: 18px;
    color: #a0a0a0;
    margin-bottom: 35px;
    max-width: 550px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-main {
    background: linear-gradient(135deg, #ff5e14 0%, #b8860b 100%);
    color: #000;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    transition: 0.3s;
}

.btn-outline {
    border: 1px solid #ff5e14;
    color: #ff5e14;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #ff5e14;
    color: #000;
}

.hero-features {
    display: flex;
    gap: 25px;
}

.hero-features span {
    font-size: 14px;
    color: #777;
    display: flex;
    align-items: center;
}

.hero-features i {
    color: #ff5e14;
    margin-right: 8px;
}

.hero-image-area {
    flex: 1;
    position: relative;
}

.image-wrapper {
    position: relative;
    max-width: 450px;
    margin: 0 auto;
}

.image-wrapper img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
    border: 2px solid #1a1a1a;
}

.stats-box {
    position: absolute;
    background: rgba(28, 28, 28, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.top-right {
    top: 20px;
    right: -20px;
    text-align: center;
}

.bottom-left {
    bottom: 20px;
    left: -20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars i { 
    color: #ff5e14; 
    font-size: 12px; 
}

.stat-icon { 
    background: #ff5e14; 
    width: 40px; 
    height: 40px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: #000;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #ff5e14;
    color: #000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    z-index: 100;
}

@media screen and (max-width: 992px) {
    .hero-section .container {
        flex-direction: column;
        text-align: center;
        padding-top: 0px;
    }
    .hero-content h1 { font-size: 38px; }
    .hero-content p { margin: 0 auto 30px; }
    .hero-btns { justify-content: center; flex-wrap: wrap; }
    .hero-features { justify-content: center; flex-wrap: wrap; }
    .hero-image-area { margin-top: 50px; }
    .stats-box { display: none; }
}
 
 
.stats-section {
    background-color: #0a0a0a;
    padding: 60px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #ff5e14;
    margin-bottom: 10px;
   
    letter-spacing: 1px;
}

.stat-label {
    font-size: 14px;
    color: #ffffff;
    letter-spacing: 2px;
    font-weight: 500;
    text-transform: uppercase;
}

@media screen and (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .stat-number {
        font-size: 36px;
    }
}

@media screen and (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats-section {
        padding: 40px 0;
    }

    .stat-item {
        padding: 10px;
    }
}


.luxury-stats {
    background: linear-gradient(135deg, #2d0b3a 0%, #1a0522 100%);
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.luxury-stats::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 40%;
    height: 200%;
    background: rgba(212, 175, 55, 0.03);
    transform: rotate(45deg);
}

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

.stats-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-box {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #ff5e14;
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.stat-icon-bg {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    color: #ff5e14;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    transition: 0.4s;
}

.stat-box:hover .stat-icon-bg {
    background: #ff5e14;
    color: #1a0522;
}

.counter-num {
    font-size: 45px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
    
}

.counter-text {
    font-size: 13px;
    color: #ff5e14;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

@media (max-width: 992px) {
    .stats-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
	.stat-box {
    flex: 1;
    min-width: 299px;
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    transition: all 0.4s ease;
}
}
@media (max-width: 500px) {
    .stats-wrapper {
        grid-template-columns: 1fr;
    }
    
    .counter-num {
        font-size: 36px;
    }

    .luxury-stats {
        padding: 50px 0;
    }
	
	.stat-box {
    flex: 1;
    width: 133%;
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    transition: all 0.4s ease;
}
}

 
 

 
.image-showcase {
    flex: 1;
    display: flex;
    justify-content: center;
}

.glass-card {
    position: relative;
    width: 350px;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(255, 193, 7, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.glass-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.glass-card:hover img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, #000);
    padding: 20px;
    text-align: center;
}

.card-overlay span {
    background: var(--accent-gold);
    color: #000;
    padding: 5px 15px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.9rem;
}

 
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .action-buttons, .stats-container {
        justify-content: center;
    }
}
 
 
 
 .about-section {
    padding: 80px 0;
    background: #050505;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: auto;
}

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

.about-card {
    background: linear-gradient(145deg, #1f0525 0%, #0a0a0a 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 25px;
    padding: 60px 40px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.about-inner {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.about-tag {
    color: #ff5e14;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}

.about-inner h1 {
    font-size: clamp(32px, 5vw, 52px);
    color: #ffffff;
    
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-inner h1 span {
    background: linear-gradient(to right, #ff5e14, #f7e08a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
}

.about-para {
    color: #b0b0b0;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 45px;
}

.f-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ff5e14;
    font-size: 15px;
    font-weight: 500;
}

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

.cta-gold {
    background: linear-gradient(135deg, #ff5e14 0%, #b8860b 100%);
    color: #000;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    transition: 0.3s;
}

.cta-outline {
    border: 1px solid #ff5e14;
    color: #ff5e14;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    transition: 0.3s;
}

.cta-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
}

.cta-outline:hover {
    background: #ff5e14;
    color: #000;
}

@media (max-width: 768px) {
    .about-section {
        padding: 50px 0;
    }
    .about-card {
        padding: 40px 20px;
    }
    .about-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    .about-group-btns {
        flex-direction: column;
        width: 100%;
    }
    .cta-gold, .cta-outline {
        width: 100%;
        text-align: center;
    }
}


.ng-gallery-section {
    padding:40px 0;
    background: #080808;
    width: 100%;
    overflow: hidden;
}

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

.ng-header {
    text-align: center;
    margin-bottom: 60px;
}

.ng-tag {
    color: #ff5e14;
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
}

.ng-header h2 {
    font-size: clamp(30px, 5vw, 45px);
    color: #fff;
    
    margin: 15px 0;
}

.ng-header h2 span {
    color: #ff5e14;
    font-style: italic;
}

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

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

.ng-profile-card {
    background: #111;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    overflow: hidden;
    transition: 0.4s ease;
}

.ng-profile-card:hover {
    transform: translateY(-10px);
    border-color: #ff5e14;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.ng-img-box {
    position: relative;
    width: 100%;
    height: 320px;
}

.ng-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ng-labels {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ng-on {
    background: #25D366;
    color: #fff;
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 700;
}

.ng-verf {
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    color: #ff5e14;
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid #ff5e14;
}

.ng-details {
    padding: 20px;
}

.ng-details h3 {
    color: #fff;
   
    font-size: 20px;
}

.ng-age {
    color: #ff5e14;
    font-size: 16px;
}

.ng-details p {
    color: #777;
    font-size: 13px;
    margin: 8px 0 15px;
}

.ng-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #222;
    padding-top: 15px;
}

.ng-price {
    color: #fff;
    font-weight: 700;
}

.ng-wp {
    color: #25D366;
    font-size: 20px;
}

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

@media (max-width: 768px) {
    .ng-grid { grid-template-columns: repeat(2, 1fr); }
    .ng-header h2 { font-size: 28px; }
}

@media (max-width: 480px) {
    .ng-grid { grid-template-columns: 1fr; }
    .ng-img-box { height: 400px; }
}


.ng-btn-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
    background: transparent;
}

.ng-view-all-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 40px;
    border: 2px solid #ff5e14;
    border-radius: 50px;
    color: #ff5e14;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.4s ease;
    background: rgba(212, 175, 55, 0.05);
}

.ng-view-all-btn i:first-child {
    font-size: 20px;
}

.ng-view-all-btn i:last-child {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.ng-view-all-btn:hover {
    background: #ff5e14;
    color: #000;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    transform: translateY(-3px);
}

.ng-view-all-btn:hover i:last-child {
    transform: translateX(8px);
}

@media (max-width: 480px) {
    .ng-view-all-btn {
        width: 90%;
        justify-content: center;
        font-size: 16px;
        padding: 12px 25px;
    }
}



.ups-premium-wrapper {
    background-color: #050505;
    padding: 40px 0;
    font-family: 'Poppins', sans-serif;
}

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

.ups-section-box {
    padding: 60px 40px;
    border-radius: 30px;
    margin-bottom: 40px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.ups-dark-bg {
    background:#1f1f1f;
}

.ups-gradient-bg {
    background: linear-gradient(145deg, #1a0522 0%, #0a0a0a 100%);
}

.ups-header {
    text-align: center;
    margin-bottom: 45px;
}

.ups-badge {
    background: rgba(212, 175, 55, 0.1);
    color: #ff5e14;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: inline-block;
    margin-bottom: 15px;
}

.ups-header h2 {
    font-size: clamp(28px, 4vw, 40px);
    color: #fff;
    
}

.ups-header h2 span {
    color: #ff5e14;
    font-style: italic;
}

.ups-tags-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.ups-tag-item {
    background: rgba(0, 0, 0, 0.08);
    color: #ccc;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.4s;
}

.ups-tag-item:hover {
    background: #ff5e14;
    color: #000;
    border-color: #ff5e14;
    transform: translateY(-3px);
}

.ups-separator {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent);
    margin: 40px 0;
}

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

.ups-service-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.05);
    padding: 35px 20px;
    border-radius: 20px;
    text-align: center;
    transition: 0.4s;
}

.ups-service-card:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: #ff5e14;
    transform: scale(1.05);
}

.ups-icon-box {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 24px;
}

.icon-wine { background: rgba(186, 45, 67, 0.1); color: #ba2d43; }
.icon-blue { background: rgba(30, 144, 255, 0.1); color: #1e90ff; }
.icon-purple { background: rgba(155, 89, 182, 0.1); color: #9b59b6; }
.icon-orange { background: rgba(230, 126, 34, 0.1); color: #e67e22; }
.icon-pink { background: rgba(255, 20, 147, 0.1); color: #ff1493; }
.icon-cyan { background: rgba(0, 206, 209, 0.1); color: #00ced1; }
.icon-gold { background: rgba(212, 175, 55, 0.1); color: #ff5e14; }
.icon-green { background: rgba(37, 211, 102, 0.1); color: #25d366; }

.ups-service-card h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 8px;
}

.ups-service-card p {
    color: #777;
    font-size: 13px;
}

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

@media (max-width: 600px) {
    .ups-services-grid { grid-template-columns: 1fr; }
    .ups-section-box { padding: 40px 20px; }
    .ups-header h2 { font-size: 26px; }
}
  
  
 .cc-final-content-wrapper {
    background-color: #0d0d0d;
    color: #cccccc;
    padding: 60px 0;
    line-height: 1.8;
}

.cc-final-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

 .cc-final-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.cc-row-reverse {
    flex-direction: row-reverse;
}

.cc-final-img, .cc-final-info {
    flex: 1;
    min-width: 300px;  
}

.cc-final-img img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    border: 2px solid #333;
    display: block;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

 
.cc-final-h2 {
    color: #ffffff;
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.3;
}

.cc-orange { color: #ff5e14; }
.cc-pink { color: #d63384; }

.cc-final-info p {
    margin-bottom: 15px;
    font-size: 15px;
}

 
.cc-final-text-block {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #222;
}

.cc-final-text-block p {
    font-size: 15px;
    margin-bottom: 15px;
    text-align: justify;
}

 
@media (max-width: 768px) {
    .cc-final-row, .cc-row-reverse {
        flex-direction: column;
        text-align: center;
    }
    
    .cc-final-img {
        max-width: 100%;
        margin-bottom: 25px;
    }

    .cc-final-h2 {
        font-size: 22px;
    }

    .cc-final-text-block p {
        text-align: left;
    }
}
 

.cc-loc-wrapper {
    background-color: #190e30; 
    padding: 60px 0;
 
    text-align: center;
}

.cc-loc-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styling */
.cc-loc-header {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cc-loc-badge {
    color: #ff5e14;
    border: 1px solid #3d1a3d;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    background: rgba(61, 26, 61, 0.3);
}

.cc-loc-title {
    color: #ffffff;
    font-size: 32px;
    font-weight: bold;
    margin: 0;
}

.cc-loc-highlight {
    color: #ff5e14;  
}

.cc-loc-underline {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #ff5e14, #ff5e14);
    margin-top: 8px;
    border-radius: 2px;
}

/* Locations Grid */
.cc-loc-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.cc-loc-grid a{ color:#FFFFFF; text-decoration:none}

.cc-loc-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #2a1b3d;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cc-loc-tag i {
    font-style: normal;
    font-size: 12px;
    filter: sepia(1) saturate(5) hue-rotate(15deg);  
}

.cc-loc-tag:hover {
    background: #ff5e14;
    color: #000;
    border-color: #ff5e14;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 204, 51, 0.3);
}

 
@media (max-width: 768px) {
    .cc-loc-title {
        font-size: 26px;
    }
    .cc-loc-grid {
        gap: 8px;
    }
    .cc-loc-tag {
        font-size: 13px;
        padding: 6px 15px;
    }
}

.cc-why-wrapper {
    background-color: #0d0d0d;
    color: #cccccc;
    padding: 80px 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.cc-why-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

 
.cc-why-header {
    text-align: center;
    margin-bottom: 60px;
}

.cc-why-badge {
    background: rgba(255, 102, 0, 0.1);
    color: #ff5e14;
    border: 1px solid #333;
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
}

.cc-why-main-title {
    color: #ffffff;
    font-size: 34px;
    margin: 15px 0;
}

.cc-why-gold { color: #ff5e14; }
.cc-why-orange { color: #ff5e14; }

.cc-why-line {
    width: 80px;
    height: 3px;
    background: #ff5e14;
    margin: 0 auto;
}

/* Cards Grid */
.cc-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 80px;
}

.cc-why-card {
    background: #161616;
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #222;
    transition: 0.3s;
}

.cc-why-card:hover {
    border-color: #ff5e14;
    transform: translateY(-5px);
}

.cc-why-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 24px;
}

 
.cc-bg-green { background: #28a745; }
.cc-bg-orange { background: #fd7e14; }
.cc-bg-blue { background: #007bff; }
.cc-bg-purple { background: #6f42c1; }

.cc-why-card h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 10px;
}

.cc-why-card p {
    font-size: 13px;
    color: #999;
}

/* Content Blocks */
.cc-why-text-block {
    margin-bottom: 50px;
}

.cc-why-h2 {
    color: #ffffff;
    font-size: 28px;
    margin-bottom: 20px;
}

.cc-why-text-block p {
    margin-bottom: 15px;
    font-size: 15px;
    text-align: justify;
}

 
@media (max-width: 768px) {
    .cc-why-main-title { font-size: 26px; }
    .cc-why-h2 { font-size: 22px; }
    .cc-why-text-block p { text-align: left; }
}



.cc-cta-wrapper {
 
    background: linear-gradient(135deg, #1a0b2e 0%, #0d0d0d 100%);
    padding: 60px 0;
    text-align: center;
    border-top: 2px solid #331a3d;
    border-bottom: 2px solid #331a3d;
 
}

.cc-cta-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.cc-cta-title {
    color: #ffffff;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
}

.cc-cta-gold {
    color: #ff6600;  
}

.cc-cta-desc {
    color: #cccccc;
    font-size: 15px;
    margin-bottom: 35px;
    letter-spacing: 0.5px;
}

.cc-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; 
}

 
.cc-btn-whatsapp {
    background-color: #25d366;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: 0.3s ease;
}

.cc-btn-whatsapp:hover {
    transform: translateY(-3px);
    background-color: #1ebe57;
}

 
.cc-btn-call {
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid #331a3d;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    transition: 0.3s ease;
}

.cc-btn-call:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ff6600;
}

.cc-icon-call {
    color: #ff6600;
}

 
@media (max-width: 768px) {
    .cc-cta-title {
        font-size: 26px;
    }
    .cc-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .cc-btn-whatsapp, .cc-btn-call {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}




.cc-vip-wrapper {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('image/banner-2.webp');  
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    
    color: #fff;
}

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

.cc-vip-main-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: bold;
}

.cc-vip-gold { color: #ff6600; }

.cc-vip-flex-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

 
.cc-vip-side-text {
    flex: 1;
    min-width: 300px;
}

.cc-vip-border-left {
    border-left: 3px solid #ff6600;
    padding-left: 20px;
    margin-bottom: 30px;
}

.cc-vip-border-left h4 {
    font-size: 22px;
    margin-bottom: 10px;
}

.cc-vip-border-left p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.6;
}

.cc-vip-simple-list {
    list-style: none;
    padding: 0;
}

.cc-vip-simple-list li {
    margin-bottom: 10px;
    color: #888;
}

.cc-vip-simple-list a {
    color: #ff6600;
    text-decoration: none;
    font-size: 14px;
}

 
.cc-vip-cards-grid {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.cc-vip-card {
    background: #ffffff;
    color: #333;
    padding: 30px 15px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    transition: 0.3s;
}

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

.cc-vip-badge {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    padding: 3px 10px;
    border-radius: 20px;
    color: #fff;
    white-space: nowrap;
}

.cc-badge-pink { background: #e91e63; }
.cc-badge-purple { background: #9c27b0; }
.cc-badge-blue { background: #00bcd4; }

.cc-vip-icon-circle {
    width: 70px;
    height: 70px;
    background: #fff0f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    font-size: 30px;
}

.cc-vip-card h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #000;
}

.cc-vip-card p {
    font-size: 12px;
    color: #777;
    margin-bottom: 20px;
}

.cc-vip-book-btn {
    display: block;
    background: #e91e63;
    color: #fff;
    text-decoration: none;
    padding: 10px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 14px;
    transition: 0.3s;
}

.cc-vip-book-btn:hover {
    background: #c2185b;
}

 
@media (max-width: 991px) {
    .cc-vip-flex-layout {
        flex-direction: column;
        text-align: center;
    }
    .cc-vip-border-left {
        border-left: none;
        border-top: 3px solid #ff6600;
        padding-left: 0;
        padding-top: 20px;
    }
}



.cc-final-content-wrapper {
    background-color: #050505;  
    color: #cccccc;
    padding: 80px 0;
    
    line-height: 1.7;
    position: relative;
    overflow: hidden;  
}

 
.cc-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    z-index: 1;
}

.cc-glow-left {
    background: #ff6600;  
    top: 20%;
    left: -100px;
}

.cc-glow-right {
    background: #007bff;  
    bottom: 20%;
    right: -100px;
}

.cc-final-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;  
}

.cc-content-block {
    margin-bottom: 60px;
}

.cc-h2-title {
    color: #ffffff;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.cc-orange-text {
    color: #ff6600;
}

.cc-content-block p {
    font-size: 16px;
    margin-bottom: 15px;
    text-align: justify;
	color:#FFFFFF;
}

 
@media (max-width: 768px) {
    .cc-h2-title {
        font-size: 22px;
    }
    .cc-content-block p {
        text-align: left;
        font-size: 14px;
    }
    .cc-glow {
        width: 150px;
        height: 150px;
    }
}



.cc-comp-wrapper {
    background-color: #0a0612;
    color: #ffffff;
    padding: 80px 0;
   
    overflow: hidden;
}

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

 
.cc-comp-header {
    text-align: center;
    margin-bottom: 60px;
}

.cc-comp-badge {
    background: rgba(111, 66, 193, 0.2);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    border: 1px solid #444;
}

.cc-comp-title {
    font-size: 36px;
    margin: 20px 0 10px;
}

.cc-comp-gradient {
    background: linear-gradient(to right, #ff6600, #d63384);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cc-comp-subtitle {
    color: #888;
    font-size: 14px;
}

 
.cc-comp-flex {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
}

 
.cc-comp-card {
    flex: 1;
    min-width: 300px;
    padding: 40px 25px;
    border-radius: 20px;
    position: relative;
    text-align: center;
    border: 1px solid #222;
}

 
.cc-card-dark { background: #111111; }

.cc-card-premium {
    background: linear-gradient(180deg, #1a0b2e 0%, #0d0d0d 100%);
    border-color: #6f42c1;
    box-shadow: 0 0 30px rgba(111, 66, 193, 0.2);
}

.cc-card-offer {
    background: #111111;
    border: 1px solid #ff6600;
    box-shadow: 0 0 40px rgba(255, 102, 0, 0.15);
}

/* Labels */
.cc-card-label {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 10px;
    border-radius: 5px;
}
.cc-label-others { background: #333; color: #ff5e14; }
.cc-label-premium { background: #28a745; color: #fff; }
.cc-label-offer { background: #ff6600; color: #fff; }

 
.cc-comp-icon-box {
    width: 60px;
    height: 60px;
    background: #222;
    border-radius: 15px;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.cc-icon-gold { background: #d63384; box-shadow: 0 0 15px #d63384; }

 
.cc-comp-list, .cc-offer-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.cc-comp-list li {
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid #222;
}

.cc-li-bad::before { content: "⚠️ "; color: #ff5e14; }
.cc-li-good::before { content: "✅ "; color: #28a745; }

 
.cc-vs-circle {
    width: 40px;
    height: 40px;
    background: #d63384;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    position: absolute;
    left: 33%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    border: 4px solid #0a0612;
}

 
.cc-comp-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    border-top: 1px solid #222;
    padding-top: 15px;
}
.cc-comp-stats span { font-weight: bold; color: #ff6600; }

 
.cc-offer-circle {
    width: 80px;
    height: 80px;
    border: 2px solid #ff6600;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.3);
}

.cc-comp-btn {
    display: block;
    background: linear-gradient(to right, #d63384, #ff6600);
    color: white;
    text-decoration: none;
    padding: 15px;
    border-radius: 10px;
    font-weight: bold;
    margin-bottom: 10px;
}

.cc-secure-note { font-size: 10px; color: #28a745; }

/* Responsive */
@media (max-width: 991px) {
    .cc-vs-circle { display: none; }
    .cc-comp-flex { gap: 30px; }
    .cc-comp-card { min-width: 100%; }
}

 

.cc-noida-premium-wrapper {
    background-color: #050505;
    padding: 80px 0;
     
    color: #cccccc;
    position: relative;
    overflow: hidden;
}

.cc-glow-effect {
    position: absolute;
    top: 10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(111, 66, 193, 0.2) 0%, transparent 70%);
    z-index: 1;
}

.cc-main-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.cc-intro-text {
    margin-bottom: 60px;
}

.cc-main-h2 {
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.cc-gold-text { color: #ff5e14; }
.cc-orange-text { color:#ff6600; }

.cc-features-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.cc-feature-item {
    display: flex;
    gap: 20px;
    background:#111111;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #222;
    transition: all 0.3s ease;
}

.cc-feature-item:hover {
    border-color: #6f42c1;
    transform: translateX(10px);
    box-shadow: -5px 0 15px rgba(111, 66, 193, 0.1);
}

.cc-number-box {
    background: linear-gradient(135deg, var(--noida-orange), var(--noida-purple));
    color: #ffffff;
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-weight: bold;
    font-size: 20px;
}

.cc-feature-content h3 {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 10px;
}

.cc-feature-content p {
    font-size: 15px;
    line-height: 1.6;
}

/* Responsive Fix */
@media (max-width: 768px) {
    .cc-feature-item {
        flex-direction: column;
        padding: 20px;
    }
    .cc-feature-item:hover {
        transform: translateY(-5px);
    }
    .cc-main-h2 {
        font-size: 26px;
    }
}


.cc-promo-wrapper {
    background-color: #0d0d0d;
    padding: 60px 0;
  
    color: #fff;
}

.cc-promo-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

 
.cc-card {
    border-radius: 25px;
    padding: 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

 
.cc-promo-row {
    display: flex;
    gap: 20px;
}

.cc-card-half { flex: 1; flex-direction: column; align-items: flex-start; text-align: left; }
.cc-card-full { width: 100%; }

 
.cc-bg-purple-gradient { background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%); }
.cc-bg-pink { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.cc-bg-yellow { background: linear-gradient(135deg, #fccb90 0%, #d57eeb 100%); background: #ff5e14; color: #000; }
.cc-bg-blue-gradient { background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%); }

 
.cc-badge-promo { font-size: 12px; font-weight: bold; background: rgba(0,0,0,0.2); padding: 5px 12px; border-radius: 10px; }
.cc-promo-title { font-size: 32px; margin: 10px 0; }
.cc-card h3 { font-size: 24px; margin-bottom: 15px; }

 
.cc-btn-yellow { background: #ff5e14; color: #000; padding: 12px 25px; border-radius: 15px; text-decoration: none; font-weight: bold; }
.cc-btn-white { background: #fff; color: #f5576c; padding: 10px 20px; border-radius: 50px; text-decoration: none; font-weight: bold; width: 100%; text-align: center; }
.cc-btn-dark { background: #1a1a1a; color: #fff; padding: 12px 25px; border-radius: 15px; text-decoration: none; font-weight: bold; width: 100%; text-align: center; }
.cc-btn-pill { display: inline-block; background: #fff; color: #4facfe; padding: 10px 25px; border-radius: 50px; text-decoration: none; font-weight: bold; margin-top: 15px; }

 
.cc-discreet-list { list-style: none; padding: 0; margin-bottom: 20px; }
.cc-discreet-list li::before { content: "✓ "; font-weight: bold; }

 
.cc-discreet-img { position: relative; width: 150px; height: 150px; }
.cc-discreet-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; border: 4px solid #fff; }
.cc-online-badge { position: absolute; bottom: 10px; right: 10px; width: 20px; height: 20px; background: #2ecc71; border-radius: 50%; border: 3px solid #fff; }

 
@media (max-width: 768px) {
    .cc-promo-row { flex-direction: column; }
    .cc-card { flex-direction: column; text-align: center; gap: 20px; }
    .cc-card-half { align-items: center; }
    .cc-discreet-img { width: 100px; height: 100px; }
}

 
.premium-wrapper {
    background-color: #190e30;
    padding: 60px 20px;
   
    min-height: 100vh;
    display: block;
}

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

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.top-tag {
   color:#fff;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.title-text {
     color:#fff;
    font-size: 36px;
    margin: 15px 0;
}

.title-text span {
     color:#FC3;
}

.subtitle-text {
      color:#fff;
    font-size: 15px;
}

.featured-card {
    background-color:#28154f;
    border: 1px solid #1f1f22;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
    border-bottom: 4px solid #FC0;
}

.badge-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.status-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
      color:#fff;
}

.icon-red { background: linear-gradient(135deg, #ff0000, #990000); }
.icon-orange { background: linear-gradient(135deg, #ff4d00, #ff9900); }
.icon-gold { background: linear-gradient(135deg, #ffcc00, #ff6600); }

.badge-label {
     color:#fff;
    font-size: 13px;
    border: 1px solid #333;
    padding: 3px 12px;
    border-radius: 50px;
}

.card-heading {
  color:#fff;
    font-size: 30px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.card-heading span {
    color:#FC0;
}

.accent-callout {
     color:#FC3;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 15px;
}

.content-p {
    color:#fff;
    line-height: 1.7;
    margin-bottom: 10px;
}

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

.grid-card {
    background-color:#FC0;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #1f1f22;
}

.label-orange {
    color:#F60;
    font-weight: bold;
    font-size: 12px;
}

.sub-heading {
    color: var(--white);
    font-size: 22px;
    margin: 15px 0;
}

.sub-heading span {
    color: var(--neon-orange);
}

.sub-p {
    color: var(--gray-light);
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 800px) {
    .grid-container {
        grid-template-columns: 1fr;
    }
    
    .title-text {
        font-size: 28px;
    }

    .card-heading {
        font-size: 22px;
    }
}




:root {
    --bg-deep: #0a0612;
    --card-bg: #150b26;
    --primary-orange: #ff5e14;
    --text-white: #ffffff;
    --text-gray: #b1a9c2;
}

.additional-sections {
    background-color: var(--bg-deep);
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
    color: var(--text-white);
}

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

/* Video Card Styling */
.video-card {
    background: linear-gradient(135deg, #1d1231 0%, #11081f 100%);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.video-content { flex: 2; }
.video-badge {
    background: rgba(255, 94, 20, 0.2);
    color: #3b82f6;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.section-title { font-size: 28px; margin: 15px 0; }
.section-title span, .video-content span { color: var(--primary-orange); }
.video-content p { color: var(--text-gray); margin-bottom: 15px; line-height: 1.6; }

.video-play-area { flex: 1; display: flex; justify-content: center; }
.play-circle {
    width: 100px; height: 100px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 30px rgba(255, 94, 20, 0.4);
    cursor: pointer;
}
.play-triangle {
    width: 0; height: 0; 
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 25px solid white;
}

/* Advantage Section Styling */
.advantage-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.advantage-info { flex: 1.2; }
.trust-badge {
    background: var(--primary-orange);
    padding: 4px 12px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 900;
}

.advantage-title { font-size: 36px; margin: 20px 0; }
.advantage-title span { color: var(--primary-orange); }

.stats-row { display: flex; gap: 40px; margin: 30px 0; }
.stat-item strong { font-size: 24px; color: var(--primary-orange); }
.stat-item p { font-size: 12px; color: var(--text-gray); }

.feature-list { display: flex; flex-direction: column; gap: 15px; margin-bottom: 30px; }
.feature-item {
    background: #1a0f2e;
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.f-icon { width: 40px; height: 40px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.orange-bg { background: rgba(255, 94, 20, 0.2); color: #ff5e14; }
.green-bg { background: rgba(16, 185, 129, 0.2); color: #10b981; }
.pink-bg { background: rgba(236, 72, 153, 0.2); color: #ec4899; }

.cta-btn {
    background: linear-gradient(90deg, #ff8c00, #ff4500);
    border: none; padding: 15px 35px; color: white;
    font-weight: bold; border-radius: 30px; cursor: pointer;
}

/* Mockup UI Styling */
.mockup-area { flex: 1; display: flex; justify-content: center; }
.phone-frame {
    background: #0f081a;
    width: 280px; padding: 20px;
    border-radius: 30px;
    border: 4px solid #2d1b4d;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.phone-header { display: flex; justify-content: space-between; margin-bottom: 20px; font-size: 12px; }
.p-verified { color: #10b981; }
.experience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.exp-box {
    background: #1d1231; padding: 10px 5px; border-radius: 8px;
    text-align: center; font-size: 10px; color: var(--text-dim);
    border: 1px solid rgba(255,255,255,0.05);
}
.online-status { margin-top: 20px; text-align: center; font-size: 12px; color: #3b82f6; }

@media (max-width: 850px) {
    .video-card, .advantage-container { flex-direction: column; text-align: center; }
    .stats-row { justify-content: center; }
    .feature-item { text-align: left; }
    .mockup-area { order: -1; }
}



.vip-container {
    background-color: #08040c;
    padding: 60px 20px;
    font-family: 'Arial', sans-serif;
    color: #ffffff;
}

.vip-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.vip-card-box {
    background: linear-gradient(145deg, #1a0f2e 0%, #0a0510 100%);
    border: 1px solid #2d1b4d;
    border-radius: 25px;
    padding: 45px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.vip-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.vip-tag {
    background: linear-gradient(90deg, #ff8c00, #ff4d00);
    color: #ffffff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
}

.vip-stars {
    color: #ffcc00;
    font-size: 20px;
    margin-right: 10px;
}

.vip-status {
    color: #b1a9c2;
    font-size: 14px;
}

.vip-main-title {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 30px;
    color: #ffffff;
    line-height: 1.2;
}

.vip-main-title span {
    color: #ff5e14;
}

.vip-flex-content {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.vip-column {
    flex: 1;
}

.vip-column p {
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.vip-highlight {
    color: #ff5e14;
    font-weight: bold;
}

.vip-btn {
    display: inline-block;
    background: linear-gradient(90deg, #ff8c00, #ff4d00);
    color: #ffffff;
    text-decoration: none;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 10px 25px rgba(255, 94, 20, 0.4);
    transition: all 0.3s ease;
}

.vip-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 94, 20, 0.5);
}

@media (max-width: 850px) {
    .vip-flex-content {
        flex-direction: column;
        gap: 0;
    }
    
    .vip-main-title {
        font-size: 26px;
    }

    .vip-card-box {
        padding: 25px;
    }
}



 

.premium-feature-section {
    background: radial-gradient(circle at center, #2c2c2e 0%, #1a1a1c 100%);
    padding: 80px 20px;
    
    color: var(--text-white);
}

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

.luxury-card {
    display: flex;
    gap: 40px;
    background: var(--card-grey);
    padding: 50px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.luxury-content { flex: 1.5; }

.top-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.gold-badge {
    background: var(--accent-gold);
    color: #fff;
    font-weight: 800;
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 4px;
}

.online-dot {
    color: #00ff88;
    font-size: 12px;
    font-weight: 600;
}

.main-title {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 20px;
	color:#ff5e14;
}

.main-title span { color: var(--accent-gold); }

.intro-p {
    color:#fff;
    font-weight: 600;
    margin-bottom: 30px;
    border-left: 3px solid #fff;
    padding-left: 15px;
}

.text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.text-col p {
    color:#fff;
    font-size: 14px;
    line-height: 1.7;
}

.why-choose {
    color: #ff5e14;
    margin-bottom: 10px;
}

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

.btn-main {
    background: linear-gradient(90deg, #ff8c00, #ff4d00);
    color: white;
    text-decoration: none;
    text-align: center;
    padding: 18px;
    border-radius: 10px;
    font-weight: 800;
    transition: 0.3s;
}

.btn-main:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(255, 77, 0, 0.4);
}

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

.btn-wa, .btn-call {
    flex: 1;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    transition: 0.3s;
}

.btn-wa:hover { background: #25d366; border-color: #25d366; }
.btn-call:hover { background: #3b82f6; border-color: #3b82f6; }

.feature-side-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.f-box {
    background: rgba(0,0,0,0.2);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.03);
    transition: all 0.4s ease;
    text-align: center;
}

.f-box:hover {
    background: var(--card-grey);
    border-color: var(--accent-gold);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.f-icon {
    font-size: 30px;
    display: block;
    margin-bottom: 15px;
}

.f-box h5 {
    color: var(--accent-gold);
    margin-bottom: 8px;
    font-size: 16px;
}

.f-box p {
    font-size: 12px;
    color: var(--text-dim);
    line-height: 1.4;
}

@media (max-width: 1000px) {
    .luxury-card { flex-direction: column; padding: 30px; }
    .text-grid { grid-template-columns: 1fr; }
    .main-title { font-size: 28px; }
}

@media (max-width: 600px) {
    .feature-side-grid { grid-template-columns: 1fr; }
}



.tags-container-fluid {
    background: #1a1a1d; 
    padding: 70px 20px;
    text-align: center;
    
    display: block;
    width: 100%;
}

.tags-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.tags-main-header {
    margin-bottom: 45px;
}

.tags-badge {
    color: #ff5e14;
    border: 1px solid #ff5e14;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: bold;
    display: inline-block;
}

.tags-main-title {
    color: #ffffff;
    font-size: 36px;
    font-weight: 800;
    margin: 20px 0;
}

.tags-main-title span {
    color: #ff5e14;
}

.tags-main-subtitle {
    color: #b0b0b5;
    font-size: 15px;
    margin-bottom: 20px;
}

.tags-layout-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.tag-link {
    background: #25252a;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #35353a;
    transition: all 0.3s ease-in-out;
}

.link-icon {
    font-size: 16px;
}

 
.tag-link:hover {
    background: #ff5e14;
    border-color: #ff5e14;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 94, 20, 0.4);
    color: #ffffff;
}

@media (max-width: 768px) {
    .tags-main-title {
        font-size: 28px;
    }
    .tag-link {
        padding: 12px 20px;
        font-size: 14px;
    }
}



.footer-main {
    background-color: #080808;
    color: #ffffff;
    padding: 80px 0 0 0;
  
    border-top: 1px solid #1a1a1a;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 20px 60px 20px;
}

 
.footer-brand { flex: 1; min-width: 280px; margin-bottom: 30px; }

.brand-logo { display: flex; align-items: center; margin-bottom: 20px; }

.logo-box {
    background: linear-gradient(135deg, #ff8c00, #ff4500);
    color: white;
    font-size: 24px;
    font-weight: bold;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-right: 12px;
}

.logo-text h3 { font-size: 22px; margin: 0; }
.logo-text span { color: #ff5e14; }
.logo-text p { font-size: 10px; letter-spacing: 2px; margin: 0; color: #888; }

.brand-desc { color: #a0a0a0; line-height: 1.6; margin-bottom: 25px; font-size: 14px; padding-right: 20px; }

.wa-footer-btn {
    background-color: #0dc359;
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: bold;
    display: inline-block;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(18, 140, 126, 0.2);
}

.wa-footer-btn:hover { background-color:#F60; transform: translateY(-3px); }

 
.footer-container h4 { font-size: 18px; margin-bottom: 25px; position: relative; }

 
.footer-links, .footer-locations { flex: 0.6; min-width: 180px; margin-bottom: 30px; }

.footer-container ul { list-style: none; padding: 0; }

.footer-container ul li { margin-bottom: 12px; }

.footer-container ul li a { color: #a0a0a0; text-decoration: none; font-size: 14px; transition: 0.3s; }

.footer-container ul li a:hover { color: #ff5e14; padding-left: 5px; }

.view-all { color: #ff5e14; text-decoration: none; font-size: 14px; font-weight: bold; margin-top: 15px; display: block; }

 
.footer-contact { flex: 1; min-width: 280px; }

.contact-card {
    background: #121212;
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border: 1px solid #1a1a1a;
    transition: 0.3s;
}

.contact-card:hover { border-color: #333; background: #181818; }

.c-icon { font-size: 20px; margin-right: 15px; }

.c-info p { margin: 0; font-weight: bold; font-size: 15px; }

.c-info span { font-size: 12px; color: #666; }

.social-icons { display: flex; gap: 10px; margin-top: 20px; }

.social-icons a {
    width: 35px;
    height: 35px;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 12px;
    transition: 0.3s;
}

.social-icons a:hover { background: #ff5e14; transform: scale(1.1); }

 
.footer-bottom { border-top: 1px solid #1a1a1a; padding: 25px 20px; background: #050505; }

.bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    color: #666;
    font-size: 12px;
}

.bottom-container span { color: #999; }

.bottom-links a { color: #666; text-decoration: none; margin: 0 5px; }

.bottom-links a:hover { color: #fff; }

@media (max-width: 850px) {
    .footer-container { flex-direction: column; }
    .footer-brand, .footer-links, .footer-locations, .footer-contact { width: 100%; margin-bottom: 40px; }
    .bottom-container { text-align: center; justify-content: center; gap: 15px; }
}