* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
}

body {
    background-color: #000;
    color: white;
	
}


h1{ font-size:32px;}
h2{ font-size:30px;}
h3{ font-size:28px;}
h4{ font-size:26px;}
h5{ font-size:24px;}


a{color:#99FF33}
header {
    background: #8b5a00;
    padding: 15px 0;
    border-bottom: 2px solid #d4af37;
}

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

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.nav-links li a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 50px;
    background: linear-gradient(to bottom, #f9e195 0%, #b38b2d 100%);
    border: 1px solid #7a5a00;
    display: inline-block;
    transition: 0.3s;
    font-size: 14px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.nav-links li a:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.desktop-logo {
    display: flex;
    align-items: center;
    margin: 0 20px;
}

.diamond-logo {
    width: 80px;
    height: 80px;
    background: #d4af37;
    transform: rotate(45deg);
    border: 3px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.logo-text {
    transform: rotate(-45deg);
    color: #000;
    font-weight: 900;
    font-size: 18px;
}

.mobile-header {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    color: #f9e195;
}

.menu-icon {
    font-size: 20px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
}

.hero {
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 1rem;
    color: #d4af37;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .desktop-logo {
        display: none;
    }

    .mobile-header {
        display: flex;
    }

    header {
        background: #000;
    }

    nav {
        display: none;
        background: #000;
        padding: 20px 0;
    }

    nav.active {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links li a {
        width: 90%;
        padding: 15px;
        font-size: 18px;
    }
}



.banner-container {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.responsive-banner {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .banner-container {
        border-bottom: 2px solid #d4af37;
    }
}


.luxury-promo {
    width: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1550684848-fac1c5b4e853?q=80&w=2070');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    border-top: 4px solid #ff007f;
    border-bottom: 4px solid #ff007f;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px 30px;
    max-width: 900px;
    width: 100%;
    box-shadow: 0 25px 45px rgba(0,0,0,0.5);
    text-align: center;
}

.main-heading {
    color: #ffffff;
    font-size: 32px;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.sub-text {
    color: #ff007f;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(255, 0, 127, 0.3);
}

.brand-box {
    margin-bottom: 35px;
}

.location-tag {
    background: #ff007f;
    color: #fff;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 4px;
    letter-spacing: 2px;
}

.premium-name {
    color: #d4af37;
    font-size: 45px;
    font-family: 'Playfair Display', serif;
    margin-top: 10px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.gold-glow-btn {
    display: inline-block;
    padding: 15px 50px;
    background: linear-gradient(135deg, #d4af37 0%, #f9e195 50%, #b38b2d 100%);
    color: #000;
    text-decoration: none;
    font-weight: 900;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 16px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    transition: all 0.4s ease;
    border: none;
    margin-bottom: 40px;
}

.gold-glow-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.8);
}

.dual-action-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.neon-pink-link {
    text-decoration: none;
    color: #fff;
    border: 1px solid #ff007f;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: bold;
    transition: 0.3s;
    background: rgba(255, 0, 127, 0.05);
}

.neon-pink-link:hover {
    background: #ff007f;
    box-shadow: 0 0 20px #ff007f;
}

.dummy-info {
    margin-top: 30px;
    color: #aaa;
    font-size: 14px;
}

@media (max-width: 768px) {
    .main-heading { font-size: 24px; }
    .premium-name { font-size: 32px; }
    .dual-action-links { flex-direction: column; align-items: center; }
    .neon-pink-link { width: 100%; }
}



.profile-gallery {
    background-color: #000;
    padding: 60px 0;
    width: 100%;
}

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

.gallery-title {
    color: #fff;
    text-align: center;
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 40px;
    letter-spacing: 1px;
     
}

.gallery-title .highlight {
    color: #ff007f;
    text-shadow: 0 0 10px rgba(255, 0, 127, 0.5);
}

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

.profile-card {
    background: #111;
    border: 1px solid #333;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.4s;
    position: relative;
}

.profile-card:hover {
    transform: translateY(-10px);
    border-color: #ff007f;
    box-shadow: 0 10px 30px rgba(255, 0, 127, 0.2);
}

.image-box {
    width: 100%;
    height: 380px;
    overflow: hidden;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: 0.4s;
}

.profile-card:hover .image-box img {
    filter: grayscale(0%);
    scale: 1.1;
}

.profile-info {
    background: linear-gradient(to top, #800040, #A40655);
    padding: 15px;
    text-align: center;
    color: #fff;
}

.profile-info .name {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 2px;
}

.profile-info .location {
    font-size: 16px;
    text-transform:capitalize;
    opacity: 0.9;
    margin-bottom: 5px;
	color:#FFFF00;
}

.profile-info .tag {
    font-size: 14px;
    background: rgba(0, 0, 0, 0.3);
    display: inline-block;
    padding: 5px 10px;
    border-radius: 20px;
	text-transform:capitalize;
}

.view-all-box {
    text-align: center;
    margin-top: 50px;
}

.view-all-btn {
    text-decoration: none;
    color: #d4af37;
    border: 2px solid #d4af37;
    padding: 12px 35px;
    font-weight: bold;
    border-radius: 50px;
    text-transform: uppercase;
    transition: 0.3s;
}

.view-all-btn:hover {
    background: #d4af37;
    color: #000;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

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

@media (max-width: 600px) {
    .profile-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .gallery-title {
        font-size: 20px;
    }

    .image-box {
        height: 450px;
    }
}


.info-payment-section {
    background: linear-gradient(135deg, #2d0015 0%, #000000 100%);
    padding: 60px 20px;
 
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

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

.main-title {
    color: #ffffff;
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.intro-text {
    text-align: center;
    color: #ccc;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.info-grid {
    margin-bottom: 50px;
}

.info-item {
    margin-bottom: 25px;
}

.info-item h3 {
    color: #ff007f;
    font-size: 18px;
    margin-bottom: 10px;
    text-transform: uppercase;
    border-left: 3px solid #ff007f;
    padding-left: 15px;
}

.info-item p {
    color: #ddd;
    font-size: 14px;
    line-height: 1.7;
    padding-left: 18px;
}

.payment-area {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 127, 0.2);
    text-align: center;
}

.payment-title {
    font-size: 20px;
    color: #d4af37;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.payment-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.pay-card {
    background: #111;
    padding: 15px;
    border-radius: 10px;
    width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border: 1px solid #333;
    transition: 0.3s;
}

.pay-card:hover {
    border-color: #ff007f;
    transform: translateY(-5px);
}

.pay-card img {
    width: 40px;
    height: auto;
}

.pay-card span {
    font-size: 12px;
    color: #fff;
    font-weight: 500;
}

@media (max-width: 768px) {
    .main-title {
        font-size: 22px;
    }
    
    .pay-card {
        width: 45%;
    }
    
    .payment-area {
        padding: 20px 10px;
    }
}



.profile-gallery {
    background-color: #000;
    padding: 60px 0;
    width: 100%;
}

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

.gallery-title {
    color: #fff;
    text-align: center;
    font-size: 32px;
    text-transform: uppercase;
    margin-bottom: 50px;
    font-family: 'Playfair Display', serif;
}

.gallery-title .highlight {
    color: #ff007f;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.profile-card {
    background: #111;
    border: 1px solid #222;
    overflow: hidden;
    transition: 0.3s;
}

.image-box {
    width: 100%;
    height: 400px;
}

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

.profile-meta {
    padding: 15px;
    text-align: center;
}

.profile-meta .category {
    color: #00ff00;
    font-size: 16px;
    margin-bottom: 5px;
}

.profile-meta .price {
    color: #ffff00;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}

.profile-meta .desc {
    color: #ccc;
    font-size: 12px;
    line-height: 1.4;
}

.profile-info {
    background: #79063F;
    padding: 10px;
    text-align: center;
    color: #fff;
}

.profile-info .name {
    font-size: 18px;
    font-weight: bold;
}

.profile-info .location {
    font-size: 14px;
	font-weight:bold;
    opacity: 0.8;
}

.extra-content {
    margin-top: 40px;
    color: #fff;
    border-top: 1px solid #333;
    padding-top: 30px;
}

.extra-content h3 {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 20px;
}

.extra-content p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

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

@media (max-width: 600px) {
    .profile-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .gallery-title {
        font-size: 22px;
    }
}




.faq-location-section {
    background-color: #000;
    padding: 60px 20px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

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

.section-title {
    color: #ff007f;
    font-size: 24px;
    margin-bottom: 30px;
    text-transform: uppercase;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
    letter-spacing: 1px;
}

.faq-content {
    margin-bottom: 50px;
}

.faq-item {
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #d4af37;
}

.faq-question {
    color: #d4af37;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
}

.faq-answer {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}

.location-details {
    background: #111;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #222;
}

.location-text {
    color: #aaa;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.location-text strong {
    color: #fff;
}

.cta-location {
    text-align: center;
    margin-top: 30px;
}

.call-btn {
    display: inline-block;
    background: linear-gradient(to right, #ff007f, #800040);
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    font-weight: bold;
    border-radius: 50px;
    font-size: 16px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(255, 0, 127, 0.3);
}

.call-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 25px rgba(255, 0, 127, 0.5);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 20px;
    }
    
    .faq-question {
        font-size: 15px;
    }
    
    .location-details {
        padding: 20px;
    }

    .call-btn {
        width: 100%;
        font-size: 14px;
    }
}




.premium-offers {
    background: radial-gradient(circle at center, #1a000d 0%, #000000 100%);
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

.offers-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-glow-title {
    font-size: 36px;
    text-transform: uppercase;
    color: #d4af37;
    margin-bottom: 50px;
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.luxury-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.luxury-card {
    flex: 1;
    min-width: 320px;
    max-width: 450px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 2px;
    transition: 0.5s ease;
    position: relative;
    overflow: hidden;
}

.card-red { border-bottom: 4px solid #ff007f; }
.card-gold { border-bottom: 4px solid #d4af37; }

.luxury-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.card-inner {
    padding: 40px 30px;
    border-radius: 23px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge {
    background: #ff007f;
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.card-gold .badge { background: #d4af37; color: #000; }

.card-title {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.divider-gold {
    width: 60px;
    height: 2px;
    background: #d4af37;
    margin-bottom: 30px;
}

.discount-circle {
    width: 120px;
    height: 120px;
    border: 2px dashed rgba(212, 175, 55, 0.5);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.percent {
    font-size: 32px;
    font-weight: 900;
    color: #d4af37;
    line-height: 1;
}

.up-to, .off {
    font-size: 10px;
    letter-spacing: 2px;
    color: #aaa;
}

.offer-details {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 30px;
}

.promo-footer {
    margin-top: auto;
    width: 100%;
}

.code-box {
    background: #000;
    border: 1px dashed #d4af37;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.label { font-size: 10px; color: #777; }
.actual-code { font-weight: bold; color: #00ffcc; letter-spacing: 1px; }

.expiry-date {
    margin-top: 15px;
    font-size: 12px;
    color: #ff4d4d;
    font-weight: 500;
}

@media (max-width: 768px) {
    .luxury-card { width: 100%; }
    .section-glow-title { font-size: 26px; }
}



.modern-gallery {
    background-color: #080808;
    padding: 80px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

.title {
    color: #fff;
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

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

.card {
    background: #111;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid #222;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    border-color: #c5a059;
}

.img-container {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover .overlay {
    opacity: 1;
}

.overlay span {
    color: #fff;
    border: 1px solid #c5a059;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    background: rgba(0,0,0,0.5);
}

.info {
    padding: 20px;
    text-align: center;
}

.info h3 {
    color: #c5a059;
    font-size: 20px;
    margin-bottom: 5px;
}

.info p {
    color: #888;
    font-size: 14px;
    margin-bottom: 15px;
}

.price-tag {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 13px;
    border: 1px solid #333;
    font-weight: bold;
}

@media (max-width: 600px) {
    .img-container {
        height: 400px;
    }
    .title {
        font-size: 24px;
    }
}



.hotel-service-section {
    background-color: #000;
    color: #fff;
    font-family: 'Arial', sans-serif;
    padding-bottom: 50px;
}

.hotel-header {
    text-align: center;
    padding: 20px;
}

.hotel-header h2 {
    font-size: 24px;
    letter-spacing: 1px;
}

.hotel-header p {
    color: #ffcc00;
    font-size: 14px;
}

.hotel-header a {
    color: #ffcc00;
    text-decoration: underline;
}

.hotel-banner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
}

.banner-item {
    position: relative;
    height: 400px;
    overflow: hidden;
    border: 1px solid #222;
}

.banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-title {
    position: absolute;
    top: 20px;
    width: 100%;
    text-align: center;
    font-size: 28px;
    color: #ffcc00;
    text-shadow: 2px 2px 5px #000;
}

.badge.top-left {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 40px;
    color: #ff9900;
    font-weight: bold;
    transform: rotate(-10deg);
}

.banner-footer-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #ffcc00;
    padding: 10px 30px;
    border: 2px solid #ffcc00;
    font-weight: bold;
    font-size: 20px;
}

.satisfaction-stamp {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 150px;
}

.vip-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 50px;
    color: #d4af37;
    font-weight: bold;
}

.hot-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 30px;
    color: red;
    font-weight: bold;
    border: 2px solid red;
    padding: 5px 15px;
}

.content-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
}

.content-box h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.content-box p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 30px;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.tag {
    background: #480325;
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    border: 1px solid #ff007f;
}

.tag:hover {
    background: #ff007f;
}

@media (max-width: 900px) {
    .hotel-banner-grid {
        grid-template-columns: 1fr;
    }
    .banner-item {
        height: 300px;
    }
}



.service-contacts {
    background-color: #3d001a;
    padding: 60px 10px;
    font-family: 'Poppins', sans-serif;
}

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

.main-heading {
    color: #fff;
    text-align: center;
    font-size: 32px;
    text-transform: uppercase;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background-color: #000;
    padding: 15px;
    border: 1px solid #5a002d;
    transition: 0.3s;
}

.service-card:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
}

.img-frame {
    width: 100%;
    border: 5px solid #d4af37;
    padding: 5px;
    margin-bottom: 20px;
}

.img-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.card-text {
    text-align: center;
    color: #fff;
}

.card-text h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.2;
    text-transform:capitalize;
}

.card-text p {
    font-size: 13px;
    line-height: 1.6;
    color: #ccc;
    text-align: justify;
}

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

@media (max-width: 600px) {
    .service-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .main-heading {
        font-size: 22px;
    }
}




.booking-guide-section {
    background-color: #000;
    padding: 60px 0;
    font-family: 'Arial', sans-serif;
    color: #fff;
}

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

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

.top-header-text h2 {
    color: #ff8c00;
    font-size: 22px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.top-header-text p {
    font-size: 16px;
    color: #ccc;
    line-height: 1.8;
}

.advanced-booking-card {
    background: linear-gradient(135deg, #222 0%, #444 100%);
    border: 1px solid #ff8c00;
    margin-bottom: 30px;
    border-radius: 5px;
    overflow: hidden;
}

.booking-flex {
    display: flex;
    align-items: center;
}

.booking-image {
    flex: 1;
    position: relative;
    background: #ff8c00;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    min-height: 300px;
}

.booking-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.satisfaction-badge {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    width: 120px;
}

.booking-details {
    flex: 1.2;
    padding: 40px;
    text-align: right;
}

.booking-details h3 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.booking-details p {
    font-size: 16px;
    color: #eee;
    margin-bottom: 10px;
}

.contact-num {
    font-size: 24px;
    color: #ff8c00;
    font-weight: bold;
    margin-top: 15px;
}

.site-link {
    font-size: 14px;
    color: #999;
    margin-top: 10px;
}

.service-guide-card {
    background: linear-gradient(to right, #222, #800000);
    border: 1px solid #ff8c00;
    border-radius: 5px;
    overflow: hidden;
}

.guide-flex {
    display: flex;
    align-items: center;
}

.guide-text {
    flex: 1.5;
    padding: 40px;
}

.guide-text h3 {
    font-size: 40px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.guide-text h4 {
    color: #ff4500;
    font-size: 20px;
    margin-bottom: 15px;
}

.guide-text p {
    color: #ddd;
    margin-bottom: 25px;
    line-height: 1.5;
}

.read-more-btn {
    display: inline-block;
    padding: 10px 25px;
    background: #ff8c00;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
}

.guide-brand {
    flex: 1;
    background: #000;
    height: 100%;
    padding: 40px;
    text-align: center;
    border-left: 5px solid #ff8c00;
}

.brand-logo-box h3 {
    color: #fff;
    margin-top: 15px;
    font-size: 22px;
}

.brand-logo-box p {
    color: #ff8c00;
    font-size: 12px;
}

@media (max-width: 768px) {
    .booking-flex, .guide-flex {
        flex-direction: column;
    }
    .booking-image {
        clip-path: none;
        width: 100%;
        min-height: 250px;
    }
    .booking-details, .guide-text {
        text-align: center;
        padding: 20px;
    }
    .booking-details h3, .guide-text h3 {
        font-size: 28px;
    }
    .guide-brand {
        width: 100%;
        border-left: none;
        border-top: 5px solid #ff8c00;
    }
}




.main-footer {
    background: linear-gradient(to top, #000 0%, #1a000d 100%);
    padding: 60px 0 30px 0;
    color: #fff;
   
    border-top: 1px solid #333;
    text-align: center;
}

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

.footer-diamond-logo {
    margin-bottom: 15px;
}

.footer-diamond-logo img {
    width: 60px;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.footer-brand-name {
    color: #d4af37;
    font-size: 24px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-divider {
    width: 100px;
    height: 1px;
    background: linear-gradient(to right, transparent, #d4af37, transparent);
    margin: 0 auto 40px auto;
}

.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.footer-links li a {
    text-decoration: none;
    color: #ccc;
    font-size: 14px;
    text-transform:capitalize;
    transition: 0.3s;
    letter-spacing: 1px;
}

.footer-links li a:hover {
    color: #d4af37;
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.social-icons a img {
    opacity: 0.7;
    transition: 0.3s;
}

.social-icons a:hover img {
    opacity: 1;
    transform: translateY(-3px);
}

.copyright-text {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

.copyright-text a {
    color: #888;
    text-decoration: none;
}

.protection-badge img {
    width: 120px;
    opacity: 0.8;
	margin-bottom:30px;
}

 
@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-brand-name {
        font-size: 18px;
    }
}

 .nowcalling
{display:block;position:fixed;bottom:0;width:100%;z-index:9999}
.lcol,.rcol,.ccol
{float:left;width:50%}
.lcol{background-color:#93CBFA}
.rcol{background-color:#87FBD9}
.lcol a,.rcol a,.ccol a{display:block;padding:10px 0;text-align:center;text-decoration:none;color:#1F0554} 