/* style.css */
:root {
    --dark-bg: #2b0a1e;
    --darker-bg: #2b0a1e;
    --gold: #080808;
    --light-text: #f8f8f8;
    --off-white: #e0e0e0;
    --gray: #888888;
    --transition: all 0.3s ease;
}

* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    color: #ffcccc;
}

a {
    color: #ffcc99;
    text-decoration: none;
    font-weight: 200;
}

p {
    text-align: justify;
}


.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #4d0c0e;
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
}

.logo span {
    color: var(--light-text);
}

.desktop-menu {
    display: flex;
    gap: 30px;
}

.desktop-menu a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
}

.desktop-menu a:hover {
    color: var(--gold);
}

.desktop-menu a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: var(--transition);
}

.desktop-menu a:hover::after {
    width: 100%;
}


.call-btn {

    color: var(--darker-bg);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid #ffcccc;
}

.call-btn:hover {
    background-color: transparent;
    color: #fff;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--light-text);
    font-size: 1.5rem;
    cursor: pointer;
}


/* Hero Video */


.btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
}

.btn-primary {
    background-color: #ffffff00;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-primary:hover {
    background-color: #000;
    color: #ffffff;
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background-color: #00d26a;
    color: #ffffff;
}

/* Section Styling */
section {
    padding: 30px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 2.2rem;
    display: inline-block;
    position: relative;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--gold);
}

section h1 {
    font-size: 2.5rem;
    /* adjust as per your design */
    line-height: 1.3;
}


/* About Section */
.about-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--off-white);
}

.about-content p {
    margin-bottom: 20px;
}

.about-content p strong {
    color: #ffcc99;
    font-weight: 700;
}

/* Video Section */
.video-section {
    position: relative;
    padding: 80px 0;
    background-color: var(--darker-bg);
}

.video-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(10, 10, 10, 0) 0%,
            rgba(10, 10, 10, 0.8) 100%);
    z-index: 1;
}

.video-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.video-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.video-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Contact Banner */
.contact-banner {
    background-color: #ffa500;
    padding: 20px 0;
    text-align: center;
    border-top: 2px solid #d4af37;
    border-bottom: 2px solid #d4af37;
}

.contact-banner h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: black;
    font-weight: 600;
}

.contact-banner .phone {
    font-size: 2rem;
    font-weight: 700;
    color: black;
    letter-spacing: 1px;
}

/* Services Section */
.services-section {
    background-color: #5c2d2d;
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #ffa500;
    border: 3px solid #d4af37;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.service-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.service-content {
    padding: 20px;
    text-align: center;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: black;
}

.service-content p {
    color: black;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #5c2d2d;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.service-btn:hover {
    background-color: #4b2424;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
    border: 2px solid rgba(212, 175, 55, 0.3);
    /* Added border */
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7);
}

.card-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: var(--transition);
}

.gallery-card:hover .card-img {
    transform: scale(1.05);
}

.verified-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #00ff00;
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 2;
    animation: neonBlink 1s infinite;
    box-shadow:
        0 0 10px #00ff00,
        0 0 20px #00ff00,
        0 0 30px #00ff00;
    font-weight: bold;
}

@keyframes neonBlink {
    0% {
        opacity: 1;
        box-shadow:
            0 0 10px #00ff00,
            0 0 20px #00ff00,
            0 0 30px #00ff00;
    }

    50% {
        opacity: 0.7;
        box-shadow:
            0 0 5px #00ff00,
            0 0 10px #00ff00,
            0 0 15px #00ff00;
    }

    100% {
        opacity: 1;
        box-shadow:
            0 0 10px #00ff00,
            0 0 20px #00ff00,
            0 0 30px #00ff00;
    }
}

.trusted-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #ff6b6b;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    animation: trustedBlink 2s infinite;
}

@keyframes trustedBlink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.card-info {
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.card-name {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #ffcccc;
}

.card-stats {
    display: flex;
    justify-content: space-between;
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.card-cta {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.card-btn {
    flex: 1;
    padding: 8px 0;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
    font-size: 0.9rem;
}

.call-card-btn {
    background-color: #000000ed;
    color: #ffffff;
}

.call-card-btn:hover {
    background-color: #ffcccc;
}

.whatsapp-card-btn {
    background-color: #000000;
    color: white;
}

.whatsapp-card-btn:hover {
    background-color: #0ebf01e4;
}

/* New Content Section Below Gallery */
.content-section {
    padding: 60px 0;
    background-color: var(--darker-bg);
}

.content-container {
    width: 80%;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}

.content-container h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #ffcccc;
}

.content-container p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--off-white);
}

/* Highlight bold keywords */
.content-container p strong {
    color: #ffcc99;
    /* change this color if needed */
    font-weight: 700;
}

/* Rates Section */
.rates-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    max-width: 800px;
}

.rates-table th,
.rates-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.rates-table th {
    background-color: #cc0000;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}

.rates-table tr:last-child td {
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.rates-table tr:hover td {
    background-color: rgba(212, 175, 55, 0.05);
}

.price {
    color: var(--gold);
    font-weight: 600;
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: rgb(255, 255, 255);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--gold);
}

.faq-question i {
    transition: var(--transition);
    color: var(--gold);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.3s ease,
        padding 0.3s ease;
    background-color: rgba(26, 26, 26, 0.9);
    color: var(--off-white);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Locations Section */
.locations-section {
    position: relative;
}

.locations-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.location-tag {
    background-color: rgba(212, 175, 55, 0.1);
    color: #ffff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 1rem;
    transition: var(--transition);
    border: 1px solid rgb(255, 255, 255);
    text-decoration: none;
}

.location-tag:hover {
    background-color: var(--gold);
    color: #fff;
    transform: translateY(-3px);
}

.locations-cta {
    text-align: center;
    margin-top: 40px;
}

.locations-cta .btn {
    background-color: rgba(212, 175, 55, 0.1);
    color: #ffffff;
    border: 2px solid #ffffff;
}

.locations-cta .btn:hover {
    background-color: #000;
    color: #ffffff;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: rgba(26, 26, 26, 0.7);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.form-group {
    margin-bottom: 20px;
}


.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--off-white);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(10, 10, 10, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: var(--light-text);
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background-color: var(--gold);
    color: var(--darker-bg);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background-color: #c19b2a;
}

/* Floating Buttons */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 100;
    animation: pulse 2s infinite;
}

.whatsapp-btn {
    background-color: #25d366;
    color: white;
}

.call-float-btn {
    background-color: #ff0000;
    /* Changed to red */
    color: white;
    bottom: 110px;
    /* Positioned above WhatsApp button */
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes callPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

.call-float-btn {
    animation: callPulse 2s infinite;
}

/* Footer */
footer {
    background-color: var(--darker-bg);
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    font-weight: 700;
    color: #d4a5a5;
    margin-bottom: 20px;
}

.disclaimer {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 20px 0;
    max-width: 600px;
}

.footer-links {
    display: flex;
    gap: 25px;
    margin: 20px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--off-white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
}

.copyright {
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 20px;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* 18+ Warning Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.popup-content {
    background-color: #1a1a1a;
    border: 3px solid #d4af37;
    border-radius: 10px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.popup-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ff0000;
}

.popup-content p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.popup-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.popup-btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
    border: 2px solid #d4af37;
}

.accept-btn {
    background-color: #d4af37;
    color: #0f0f0f;
}

.accept-btn:hover {
    background-color: transparent;
    color: #d4af37;
}

.decline-btn {
    background-color: transparent;
    color: #d4af37;
}

.decline-btn:hover {
    background-color: #d4af37;
    color: #0f0f0f;
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: rgba(10, 10, 10, 0.98);
        padding: 20px;
        display: none;
        flex-direction: column;
        z-index: 999;
    }
    
    .mobile-menu.active {
        display: flex;
    }
    
    .mobile-menu a {
        color: var(--light-text);
        text-decoration: none;
        padding: 15px 0;
        font-size: 1.2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    /* Mobile: Show only one card per row */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .card-img {
        height: 320px;
    }

    .card-cta {
        flex-direction: column;
        gap: 8px;
    }

    .card-btn {
        padding: 10px 0;
    }

    /* Adjust floating buttons for mobile */
    .floating-btn {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .call-float-btn {
        bottom: 90px;
        /* Positioned above WhatsApp button on mobile */
    }

    /* Video section adjustments */
    .video-content h2 {
        font-size: 2rem;
    }

    .video-content p {
        font-size: 1rem;
    }

    /* Services section adjustments */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-image {
        height: 250px;
    }

    .service-content h3 {
        font-size: 1.3rem;
    }

    /* Content section adjustments */
    .content-container h2 {
        font-size: 1.8rem;
    }

    .content-container p {
        font-size: 1rem;
    }

    /* Popup adjustments */
    .popup-content {
        padding: 20px;
    }

    .popup-content h2 {
        font-size: 1.7rem;
    }

    .popup-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .popup-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 1.7rem;
    }

    .card-img {
        height: 480px;
    }

    .contact-banner h3 {
        font-size: 1.2rem;
    }

    .contact-banner .phone {
        font-size: 1.5rem;
    }
}

/* Ensure mobile menu is hidden on desktop */
@media (min-width: 769px) {
    .mobile-menu {
        display: none !important;
    }
}

/* rate css */
.rates-container {
    max-width: 1400px;
    width: 100%;
    background: #0f0f0f;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(43, 10, 30, 0.15);
    padding: 50px 40px;
    transition: all 0.3s ease;
}

/* Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
}

.section-header h2 span {
    color: #D4A5A5;
    background: #fcf5f5;
    padding: 0 18px;
    border-radius: 50px;
}

.section-header p {
    font-size: 18px;
    color: #c2acac;
    margin-top: 12px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2B0A1E, #D4A5A5);
    margin: 15px auto 0;
    border-radius: 10px;
}

/* Service Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.service-card {
    background: #fcf9f8;
    border-radius: 20px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #f0e6e6;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2B0A1E, #D4A5A5);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(43, 10, 30, 0.12);
    border-color: #D4A5A5;
    background: #ffffff;
}

.service-card .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2B0A1E, #5a1a3e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 30px;
    color: #D4A5A5;
    transition: 0.4s;
}

.service-card:hover .icon {
    background: linear-gradient(135deg, #D4A5A5, #b88a8a);
    color: #2B0A1E;
    transform: rotate(10deg) scale(1.05);
}

.service-card .badge {
    display: inline-block;
    background: #2B0A1E;
    color: #D4A5A5;
    font-size: 11px;
    padding: 3px 14px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2B0A1E;
    margin-bottom: 5px;
}

.service-card .duration {
    font-size: 14px;
    color: #a07a7a;
    margin-bottom: 10px;
    font-weight: 500;
}

.service-card .price {
    font-size: 28px;
    font-weight: 800;
    color: #2B0A1E;
    margin-bottom: 12px;
}

.service-card .price small {
    font-size: 14px;
    font-weight: 400;
    color: #b88a8a;
}

.service-card .features {
    list-style: none;
    margin: 12px 0 18px;
    text-align: left;
    padding-left: 5px;
}

.service-card .features li {
    font-size: 14px;
    color: #4a3a3a;
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-card .features li i {
    color: #D4A5A5;
    font-size: 13px;
    width: 18px;
}

.btn-book {
    display: inline-block;
    background: linear-gradient(135deg, #2B0A1E, #4a1a32);
    color: #fff;
    padding: 11px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.btn-book:hover {
    background: linear-gradient(135deg, #D4A5A5, #b88a8a);
    color: #2B0A1E;
    transform: scale(1.04);
    box-shadow: 0 8px 25px rgba(212, 165, 165, 0.4);
}

/* VIP / Premium Section */
.vip-section {
    background: linear-gradient(135deg, #2B0A1E, #4a1a32);
    border-radius: 25px;
    padding: 40px 35px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    border: 2px solid #D4A5A5;
}

.vip-text {
    color: #fff;
    flex: 2;
    min-width: 250px;
}

.vip-text h3 {
    font-size: 28px;
    font-weight: 700;
}

.vip-text h3 i {
    color: #D4A5A5;
    margin-right: 10px;
}

.vip-text p {
    color: #d4baba;
    font-size: 16px;
    margin-top: 8px;
    line-height: 1.6;
    max-width: 500px;
}

.vip-price {
    flex: 1;
    text-align: right;
    min-width: 180px;
}

.vip-price .amount {
    font-size: 38px;
    font-weight: 800;
    color: #D4A5A5;
}

.vip-price .label {
    color: #d4baba;
    font-size: 16px;
    display: block;
}

.vip-price .btn-vip {
    margin-top: 12px;
    background: #D4A5A5;
    color: #2B0A1E;
    padding: 10px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: 0.3s;
}

.vip-price .btn-vip:hover {
    background: #e8c8c8;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 165, 165, 0.3);
}

/* Category Tags */
.category-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 35px;
}

.category-tags span {
    background: #f5efed;
    color: #2B0A1E;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid #D4A5A5;
    transition: 0.3s;
}

.category-tags span:hover {
    background: #2B0A1E;
    color: #D4A5A5;
    cursor: default;
}

.category-tags span i {
    margin-right: 8px;
    color: #D4A5A5;
}

.category-tags span:hover i {
    color: #fff;
}

/* Note */
.note {
    text-align: center;
    margin-top: 35px;
    color: #a07a7a;
    font-size: 14px;
    border-top: 2px solid #f0e6e6;
    padding-top: 25px;
}

.note i {
    color: #D4A5A5;
    margin-right: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .rates-container {
        padding: 30px 15px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .vip-section {
        flex-direction: column;
        text-align: center;
    }

    .vip-price {
        text-align: center;
        margin-top: 20px;
    }

    .vip-text p {
        max-width: 100%;
    }

    .service-card {
        padding: 18px 12px;
    }

    .service-card .price {
        font-size: 24px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 18px;
    }
}

@media (max-width: 400px) {
    .section-header h2 {
        font-size: 22px;
    }

    .btn-book {
        padding: 9px 18px;
        font-size: 13px;
    }

    .category-tags span {
        font-size: 12px;
        padding: 5px 14px;
    }
}

.profile-listing {
    background: #000;
    padding: 60px 0;
}

.profile-card {
    display: flex;
    align-items: center;
    gap: 25px;
    background: linear-gradient(90deg,
            #050505 0%,
            #02152c 100%);
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 30px rgba(255, 0, 150, .15);
}

.profile-image {
    position: relative;
    width: 260px;
    min-width: 260px;
}

.profile-image img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    display: block;
}

.online-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #00d26a;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 30px;
}

.profile-content {
    flex: 1;
    padding: 20px 0;
}

.profile-content h3 {
    color: #ffc107;
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 700;
}

.profile-content p {
    color: #fff;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.profile-tags span {
    background: #ffcccc;
    color: #000000;
    font-size: 13px;
    padding: 8px 14px;
    border-radius: 30px;
}

.profile-actions {
    width: 220px;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-right: 30px;
}

.call-btn,
.whatsapp-btn {
    text-decoration: none;
    text-align: center;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    transition: .3s;
}

.call-btn {

    color: #fff;
}

.whatsapp-btn {
    background: #0de54e;
    color: #fff;
}

.call-btn:hover,
.whatsapp-btn:hover {
    transform: translateY(-3px);
}

/* Mobile */

@media(max-width:991px) {

    .profile-card {
        flex-direction: column;
        text-align: center;
    }

    .profile-image {
        width: 100%;
        min-width: 100%;
    }

    .profile-image img {
        height: 350px;
    }

    .profile-content {
        padding: 25px;
    }

    .profile-tags {
        justify-content: center;
    }

    .profile-actions {
        width: 100%;
        min-width: 100%;
        padding: 0 25px 25px;
    }

    .profile-content h3 {
        font-size: 24px;
    }
}

@media(max-width:576px) {

    .profile-image img {
        height: 280px;
    }

    .profile-content h3 {
        font-size: 22px;
    }

    .profile-content p {
        font-size: 14px;
    }
}