
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* General Styling */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
}

/* Header Styling */
header {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(45deg, #6b48ff, #00ddeb); /* Vibrant gradient */
    color: white;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    animation: fadeIn 1s ease-in-out; /* Entrance animation */
}

header h1 {
    margin: 0;
    font-size: 3em;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Improve readability */
}

header p {
    font-size: 1.4em;
    margin-top: 15px;
    line-height: 1.6;
    opacity: 0.9;
}
strong{
    color:#62ffe9;
}

/* Why Choose Section */
.why-choose {
    margin: 60px 0;
}

.why-choose h2 {
    text-align: center;
    font-size: 2.5em;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.why-choose-item {
    background: linear-gradient(135deg, #ffffff, #f8e1ff); /* Subtle gradient */
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effect */
    animation: slideUp 0.5s ease-in-out forwards; /* Entrance animation */
}

.why-choose-item:hover {
    transform: translateY(-10px); /* Lift on hover */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
    background: linear-gradient(135deg, #f8e1ff, #e0c3fc); /* Color change on hover */
}

.why-choose-item h3 {
    margin: 0 0 15px;
    font-size: 1.7em;
    color: #4a00e0; /* Vibrant color for headings */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.why-choose-item p {
    font-size: 1.1em;
    color: #555;
    line-height: 1.5;
}

/* Services Section */
.services {
    margin: 60px 0;
}

.services h2 {
    text-align: center;
    font-size: 2.5em;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.service-item {
    background: linear-gradient(135deg, #000000, #9fa0a1f2); /* Light blue gradient */
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    text-align: center;
    font-size: 1.1em;
    color: #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    animation: slideUp 0.7s ease-in-out forwards; /* Entrance animation */
}

.service-item:hover {
    transform: scale(1.05); /* Slight zoom on hover */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
    background: linear-gradient(135deg, #000000, #768b9d); /* Color shift on hover */
}

/* Booking Section */
.booking {
    text-align: center;
    margin: 10px; /* 10px gap on all sides (top, right, bottom, left) */
    padding: 40px;
    background: linear-gradient(45deg, #ff6f61, #ffb88c); /* Warm gradient */
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    animation: fadeIn 1s ease-in-out;
    max-width: 1200px; /* Matches container width for consistency */
    width: calc(100% - 20px); /* Full width minus 10px left + 10px right */
    box-sizing: border-box; /* Ensures padding doesn't affect width */
    display: flex; /* Use flexbox to center content vertically and horizontally */
    flex-direction: column;
    align-items: center; /* Center horizontally */
    justify-content: center; /* Center vertically */
    margin-left: auto; /* Center the section horizontally */
    margin-right: auto;
}

.booking h2 {
    font-size: 2.5em;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.booking p {
    font-size: 1.3em;
    color: white;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 90%; /* Ensure text doesn't touch edges */
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, #ff2e63, #ff6b6b); /* Vibrant button gradient */
    color: white;
    text-decoration: none;
    border-radius: 50px; /* Rounded button */
    font-size: 1.3em;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    background: linear-gradient(45deg, #ff6b6b, #ff2e63); /* Reverse gradient on hover */
}

/* Animations */
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.2em;
    }

    header p {
        font-size: 1.1em;
    }

    .why-choose h2,
    .services h2,
    .booking h2 {
        font-size: 2em;
    }

    .why-choose-item,
    .service-item {
        padding: 20px;
    }

    .why-choose-item h3 {
        font-size: 1.5em;
    }

    .service-item {
        font-size: 1em;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px;
    }

    header {
        padding: 20px 10px;
    }

    .why-choose-grid,
    .services-grid {
        grid-template-columns: 1fr; /* Single column on small screens */
    }
}
body {
    font-family: 'Montserrat', Arial, sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Accessibility class for screen readers */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Improved Mobile Responsiveness */
html,
body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Ensure all sections have black background */
section {
    background-color: linear-gradient(135deg, #372846 0%, #2e3356 100%) !important;
    width: 100%;
}

.header-hero {
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}

.header-hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
    animation: zoomin 12s ease-in forwards;
    transition: transform 0.4s;
    transform: none;
}

@media (max-width: 600px) {
    .header-hero-img {
        width: 100%;
        height: 100vh;
        object-fit: cover;
        object-position: 70% center;
        transform: scaleX(0.88);
        animation: zoomin 12s ease-in forwards;
        transition: object-position 0.4s, transform 0.4s;
    }
}

@keyframes zoomin {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

header {
    width: 100%;
    height: 80px;
    background: transparent;
    display: flex;
    align-items: center;
    z-index: 2;
    padding: 0 48px;
    justify-content: center;
    position: relative;
}

.center-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.08em;
    margin: 0 32px;
    white-space: nowrap;
    transition: all 0.3s;
    height: auto;
    display: flex;
    align-items: center;
    z-index: 2;
}

.desktop-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
}

.desktop-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 32px;
    align-items: center;
}

.desktop-nav li {
    position: relative;
}

.desktop-nav a {
    color: #fff;
    font-family: inherit;
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 0;
    transition: color 0.3s;
    user-select: none;
}

.desktop-nav a.active,
.desktop-nav a:hover {
    color: #ff2b7a;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    width: 44px;
    height: 44px;
    z-index: 11000;
    margin-left: auto;
    background: transparent;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
}

.hamburger span {
    height: 4px;
    width: 28px;
    background: #DAA520;
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.3s;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

@media (max-width: 900px) {
    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: flex;
        position: absolute;
        right: 24px;
        top: 18px;
    }

    header {
        padding: 0 16px;
    }

    .center-title {
        font-size: 1.7rem;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    header {
        padding: 0 8px;
        height: 70px;
    }

    .hamburger {
        width: 36px;
        height: 36px;
        right: 12px;
        top: 16px;
    }

    .hamburger span {
        width: 22px;
    }

    .center-title {
        font-size: 1.4rem;
        letter-spacing: 0.05em;
    }
}

.mobile-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10500;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    padding-top: 32px;
    overflow-y: auto;
}

.mobile-nav.active {
    display: flex;
}

.mobile-link {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    padding: 18px 0 8px 0;
    transition: color 0.2s;
    user-select: none;
    width: 100%;
    text-align: center;
    background: none;
    border: none;
    font-family: inherit;
    cursor: pointer;
    position: relative;
}

.mobile-link.active,
.mobile-link:hover {
    color: #ff2b7a;
}

@media (max-width: 600px) {
    .mobile-nav {
        top: 70px;
        padding-top: 20px;
    }

    .mobile-link {
        font-size: 1.1rem;
        padding: 14px 0 8px 0;
    }
}

.typewriter-outer {
    width: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    pointer-events: none;
    user-select: none;
    z-index: 2;
    padding-left: 8vw;
    padding-right: 8vw;
    box-sizing: border-box;
    overflow: hidden;
}

.typewriter-container {
    display: inline-block;
    white-space: nowrap;
    margin-top: 20px;
    line-height: 1.2;
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

/* Ensure the text and cursor are perfectly aligned */
#typewriter,
.typewriter-cursor {
    line-height: 1.2;
    margin: 0;
    padding: 0;
    position: relative;
    white-space: nowrap;
}

#typewriter {
    display: inline-block;
    vertical-align: baseline;
    font-size: 50px;
    font-weight: 600;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    width: auto;
    transform-origin: left center;
}

.typewriter-cursor {
    display: inline;
    vertical-align: baseline;
    font-size: 50px;
    font-weight: 700;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    animation: blink-cursor 0.8s step-end infinite;
}

@keyframes blink-cursor {

    from,
    to {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.main-heading-section {
    width: 100%;
    display: block;
    background: #000;
    padding: 60px 0 32px;
    box-sizing: border-box;
    text-align: center;
}

@media (max-width: 768px) {
    .typewriter-outer {
        padding-left: 5vw;
        padding-right: 5vw;
        width: 100%;
    }

    #typewriter,
    .typewriter-cursor {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .typewriter-outer {
        padding-left: 3vw;
        padding-right: 3vw;
        width: 100%;
    }

    #typewriter,
    .typewriter-cursor {
        font-size: 28px;
    }
}

.rotating-border-box {
    display: inline-block;
    vertical-align: top;
    background: #111;
    border-radius: 18px;
    padding: 32px 5vw;
    box-sizing: border-box;
    border: 4px solid transparent;
    margin: 0;
    background:
        linear-gradient(#000, #000) padding-box,
        conic-gradient(from var(--angle, 0deg),
            #ff2b7a 0deg, #ff2b7a 60deg,
            transparent 60deg, transparent 360deg) border-box;
    box-shadow: 0 0 24px #000;
    z-index: 1;
    transition: box-shadow 0.3s;
}

.main-heading {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 3.2rem;
    letter-spacing: 0.18em;
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 12px #000, 0 0 6px #ff2b7a66;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    font-style: normal;
    position: relative;
    z-index: 2;
    word-break: break-word;
}

@media (max-width: 700px) {
    .rotating-border-box {
        padding: 10px 5vw;
        border-radius: 12px;
    }

    .main-heading {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    #typewriter {
        font-size: 36px;
    }

    .typewriter-cursor {
        font-size: 36px;
    }

    .typewriter-outer {
        padding-left: 5vw;
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .main-heading {
        font-size: 1.8rem;
        padding: 16px 32px;
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 1.5rem;
        padding: 12px 24px;
    }

    #typewriter {
        font-size: 28px;
    }

    .typewriter-cursor {
        font-size: 28px;
    }

    .typewriter-outer {
        padding-left: 4vw;
    }
}

/* Utility classes */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.hidden {
    display: none;
}

.flex {
    display: flex;
}

.w-screen {
    width: 100vw;
}

.h-screen {
    height: 100vh;
}

.min-h-screen {
    min-height: 100vh;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.w-11 {
    width: 2.75rem;
}

.h-11 {
    height: 2.75rem;
}

.h-16 {
    height: 4rem;
}

.h-1 {
    height: 0.25rem;
}

.w-7 {
    width: 1.75rem;
}

.z-10 {
    z-index: 10;
}

.z-50 {
    z-index: 50;
}

.z-[11000] {
    z-index: 11000;
}

.bg-transparent {
    background-color: transparent;
}

.bg-black {
    background-color: #000;
}

.bg-gold {
    background-color: #DAA520;
}

.bg-opacity-90 {
    background-color: rgba(0, 0, 0, 0.9);
}

.text-white {
    color: #fff;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.font-bold {
    font-weight: 700;
}

.uppercase {
    text-transform: uppercase;
}

.tracking-wider {
    letter-spacing: 0.05em;
}

.tracking-widest {
    letter-spacing: 0.1em;
}

.whitespace-nowrap {
    white-space: nowrap;
}

.rounded {
    border-radius: 0.25rem;
}

.rounded-full {
    border-radius: 9999px;
}

.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.cursor-pointer {
    cursor: pointer;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mx-8 {
    margin-left: 2rem;
    margin-right: 2rem;
}

.space-y-8>*+* {
    margin-top: 2rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.top-0 {
    top: 0;
}

.left-0 {
    left: 0;
}

.right-6 {
    right: 1.5rem;
}

.top-4 {
    top: 1rem;
}

.-translate-x-full {
    transform: translateX(-100%);
}

.transition-all {
    transition-property: all;
}

.transition-colors {
    transition-property: color;
}

.transition-transform {
    transition-property: transform;
}

.duration-300 {
    transition-duration: 300ms;
}

.duration-400 {
    transition-duration: 400ms;
}

/* Header styles */
header {
    height: 5rem;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: #DAA520;
}

.logo {
    color: #DAA520;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}

/* Hero section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('images/h1-rev-img1.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
}

.hero h1 {
    font-size: 3rem;
    color: #DAA520;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    color: #fff;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact buttons */
.contact-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-btn {
    background: #DAA520;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s;
}

.contact-btn:hover {
    background: #B8860B;
}

/* Mobile Menu */
#mobileMenuBtn {
    display: none;
    border: none;
    outline: none;
}

#mobileMenuBtn span {
    display: block;
    background: #DAA520;
    border-radius: 9999px;
    transition: all 0.3s ease;
}

#mobileNav {
    transform: translateX(-100%);
}

#mobileNav.active {
    transform: translateX(0);
}

.mobile-link {
    font-family: 'Cormorant Garamond', serif;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.mobile-link:hover {
    color: #ffd700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .md\:hidden {
        display: none;
    }

    .md\:flex {
        display: flex;
    }

    .md\:px-12 {
        padding-left: 3rem;
        padding-right: 3rem;
    }

    .sm\:scale-x-\[0\.88\] {
        transform: scaleX(0.88);
    }

    .md\:scale-x-100 {
        transform: scaleX(1);
    }

    #mobileMenuBtn {
        display: flex;
    }

    .hero h1 {
        font-size: 2rem;
    }
}

/* Animations */
.animate-zoomin {
    animation: zoomin 20s ease infinite;
}

.rotate-45 {
    transform: rotate(45deg);
}

.-rotate-45 {
    transform: rotate(-45deg);
}

.translate-y-2 {
    transform: translateY(0.5rem);
}

.-translate-y-2 {
    transform: translateY(-0.5rem);
}

.opacity-0 {
    opacity: 0;
}

@keyframes zoomin {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Transitions */
.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.duration-300 {
    transition-duration: 300ms;
}

/* Mobile menu animations */
#mobileMenuBtn span {
    transform-origin: center;
    transition: all 0.3s ease-in-out;
}

/* Enhanced Nightpartner Section Styles */
.nightpartner-section {
    display: flex;
    flex-direction: row;
    font-family: 'Cormorant Garamond', serif;
    color: #fff;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.nightpartner-col {
    width: 100%;
    box-sizing: border-box;
    padding: 3rem 1.5rem;
    position: relative;
    transition: transform 0.3s ease;
}

.nightpartner-col:hover {
    transform: translateY(-5px);
}

.nightpartner-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
    z-index: 1;
}

.nightpartner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.nightpartner-col-left {
    background: linear-gradient(135deg, rgba(235, 20, 113, 0.95), rgba(235, 20, 113, 0.85));
}

.nightpartner-col-right {
    background: linear-gradient(135deg, rgba(67, 22, 94, 0.95), rgba(67, 22, 94, 0.85));
}

.nightpartner-title,
.nightpartner-titles {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.3;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    padding-bottom: 1rem;
}

.nightpartner-title::after,
.nightpartner-titles::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
}

.nightpartner-text,
.nightpartner-texts {
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.nightpartner-text:hover,
.nightpartner-texts:hover {
    opacity: 1;
}

.nightpartner-bold {
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.nightpartner-highlight {
    color: #ff8c00;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
    transition: color 0.3s ease;
}

.nightpartner-highlight:hover {
    color: #f97316;
}

.nightpartner-special {
    color: #ffd700;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    transition: color 0.3s ease;
}

.nightpartner-special:hover {
    color: #eab308;
}

@media (min-width: 768px) {
    .nightpartner-col {
        width: 50%;
        padding: 4rem 2.5rem;
    }

    .nightpartner-title,
    .nightpartner-titles {
        font-size: 2.8rem;
    }

    .nightpartner-text,
    .nightpartner-texts {
        font-size: 1.2rem;
    }
}

@media (max-width: 767px) {
    .nightpartner-section {
        flex-direction: column;
    }
}

@media (min-width: 1024px) {
    .nightpartner-col {
        padding: 5rem 3rem;
    }

    .nightpartner-title,
    .nightpartner-titles {
        font-size: 3.2rem;
    }
}


.animated-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;

    position: relative;
    overflow: hidden;
}

.animated-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #D4AF37 0%, #F5D76E 100%);
    color: #000;
    text-decoration: none;
    font-family: 'Georgia', serif;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.animated-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.animated-button:active {
    transform: translateY(1px);
}

.button-text {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.button-icon {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.animated-button:hover .button-icon {
    transform: translateX(4px);
}

.button-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

@media (max-width: 768px) {
    .animated-button {
        padding: 14px 28px;
        font-size: 1rem;
    }
}


.toc-section {
    padding: 40px 20px;
    background: #000;
}

.toc-container {
    max-width: 1200px;
    margin: 0 auto;
}

.toc-heading {
    text-align: center;
    color: #ff2b7a;
    font-size: 2rem;
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
}

.toc-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    padding: 0 20px;
}

.toc-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #fff;
    padding: 15px;
    background: rgba(255, 43, 122, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.toc-link:hover {
    background: rgba(255, 43, 122, 0.2);
    transform: translateY(-5px);
}

.toc-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.toc-text {
    font-size: 1rem;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

@media (max-width: 768px) {
    .toc-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 10px;
    }

    .toc-heading {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .toc-link {
        padding: 10px;
    }

    .toc-icon {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    .toc-text {
        font-size: 0.9rem;
    }
}


@media (min-width: 700px) {
    #profilesWrap {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

@media (max-width: 700px) {
    #profilesWrap {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }

    .escort-card-name {
        font-size: 0.95rem !important;
    }

}

.escort-card {
    position: relative;
    cursor: pointer;
    transition: transform 0.15s;
}

.escort-card:hover {
    transform: scale(1.035);
    z-index: 2;
}

.escort-card-img-wrap {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 1.2rem;
    position: relative;
}

.escort-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 1.2rem;
}

.escort-card-gradient {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 90px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.82) 70%, rgba(0, 0, 0, 0.0) 100%);
    z-index: 1;
    border-radius: 0 0 1.2rem 1.2rem;
}

.escort-card-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
    padding: 0 16px 12px 16px;
}

.escort-card-name {
    font-size: 1.17rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.13);
}

.view-profile-btn {
    background-color: #ff3ca6;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 5px;
    display: inline-block;
    transition: background-color 0.2s ease;
    width: fit-content;
}

.view-profile-btn:hover {
    background-color: #e61e8c;
    color: #fff;
}


body {
    font-family: 'Poppins', Arial, sans-serif;
    margin: 0;
    background: #000;
}

.profiles-section {
    background: #000;
    min-height: 100vh;
    width: 100%;
    padding: 32px 16px 48px 16px;
    box-sizing: border-box;
}

.talent-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

@media (min-width: 700px) {
    .talent-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1000px) {
    .talent-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.talent-card {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    background: #fff;
    cursor: pointer;
    min-height: 340px;
    transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
    outline: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    border: 3px solid #0047ab;
}

.talent-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.talent-card img {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    display: block;
    transition: filter 0.4s;
    border-radius: 0;
    background: #fff;
    z-index: 1;
}

.talent-card .watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.35);
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Poppins', Arial, sans-serif;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    text-shadow: 1px 1px 4px #000;
    z-index: 2;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@media (max-width: 700px) {
    .profiles-section {
        padding: 20px 10px 30px 10px;
    }

    .talent-grid {
        gap: 15px;
    }

    .talent-card {
        min-height: 280px;
    }

    .talent-card .watermark {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .talent-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .talent-card {
        min-height: 220px;
    }
}

.talent-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 30, 30, 0.62);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(60px);
    transition: opacity 0.4s cubic-bezier(.4, 0, .2, 1), transform 0.4s cubic-bezier(.4, 0, .2, 1);
    border-radius: 0;
}

.talent-info {
    color: #fff;
    padding: 32px 16px 28px 16px;
    width: 100%;
    text-align: center;
    background: linear-gradient(0deg, rgba(30, 30, 30, 0.95) 70%, rgba(30, 30, 30, 0.2) 100%);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(.4, 0, .2, 1);
}

.talent-card.active img,
.talent-card:hover img {
    filter: blur(2px) brightness(0.7);
}

.talent-card.active .talent-overlay,
.talent-card:hover .talent-overlay {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.talent-card.active .talent-info,
.talent-card:hover .talent-info {
    transform: translateY(0);
    opacity: 1;
}

.talent-info h4 {
    margin: 0 0 12px 0;
    font-size: 1.1rem;
    color: #2c8582;
    letter-spacing: 0.06em;
    font-weight: 600;
}

.profile-details {
    list-style: none;
    margin: 0;
    padding: 0;
    font-weight: 300;
    font-size: 0.96rem;
    width: 100%;
    font-family: 'Poppins', Arial, sans-serif;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.profile-details li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.profile-details .label {
    color: #fff;
    font-weight: 300;
    opacity: 0.85;
    min-width: 70px;
    text-align: left;
    font-size: 0.96rem;
}

.profile-details .value {
    color: #2c8582;
    font-weight: 600;
    text-align: right;
    font-size: 0.96rem;
    margin-left: 16px;
}

@media (max-width: 700px) {
    .talent-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .profiles-section {
        padding: 18px 10px 24px 10px;
    }

    .talent-card {
        min-height: 180px;
    }

    .talent-info {
        padding: 18px 7px 18px 7px;
    }

    .talent-info h4,
    .profile-details .label,
    .profile-details .value {
        font-size: 0.84rem;
    }
}

.profile-btn {
    display: inline-block;
    background: #2c8582;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 12px;
    transition: background 0.3s ease;
}

.profile-btn:hover {
    background: #d13d77;
}

@media (max-width: 700px) {
    .profile-btn {
        padding: 6px 12px;
        font-size: 0.84rem;
    }
}


.talent-card {
    position: relative;
    /* ...your other styles... */
}

.talent-card .watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    max-width: 95%;
    transform: translate(-50%, -50%);
    color: transparent;
    font-size: 2rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    pointer-events: none;
    user-select: none;
    white-space: normal;
    text-align: center;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.10) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 2px 12px #000, 0 0 6px #0047ab44;
    z-index: 2;
    letter-spacing: 0.04em;
    text-transform: lowercase;
    overflow-wrap: break-word;
    word-break: break-word;
    line-height: 1.1;
}

@media (max-width: 700px) {
    .talent-card .watermark {
        font-size: 1.1rem;
        width: 98%;
        max-width: 98%;
        padding: 0 2%;
    }
}


/* Force vertical stacking and override everything */
.escort-section,
.escort-section * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.escort-section {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 16px 0 16px;
    background: #000;
    color: #fff;
    font-family: 'Segoe UI', Arial, sans-serif;
    gap: 0;
    /* Remove any gaps */
}

.escort-title {
    color: #ff1493;
    font-size: 2em;
    text-align: center;
    font-weight: 500;
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}

.escort-intro {
    text-align: center;
    font-size: 1.15em;
    margin-bottom: 32px;
    line-height: 1.5;
    font-weight: 400;
}

.yellow-bold {
    color: #ffd700;
    font-weight: bold;
}

.escort-media-wrapper {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 32px;
    width: 100%;
}

.escort-media-bg {
    background: linear-gradient(90deg, #d32f2f 0%, #7b1fa2 100%);
    border-radius: 16px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 600px;
    height: auto;
    aspect-ratio: 3/2;
    position: relative;
    box-shadow: 0 6px 32px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.escort-video {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: #222;
    object-fit: cover;
    display: block;
}

@media (max-width: 640px) {
    .escort-media-bg {
        border-radius: 12px;
    }

    .escort-video {
        border-radius: 8px;
    }
}

.escort-desc {
    margin: 0 auto 32px auto;
    color: #fff;
    font-size: 1em;
    line-height: 1.7;
    max-width: 900px;
    text-align: left;
}

.desc-highlight {
    color: #ffd700;
    font-weight: 500;
}

.desc-highlight2 {
    color: #9370db;
    font-weight: 500;
}

.desc-highlight3 {
    color: #ffd700;
    font-weight: 500;
}

.desc-highlight4 {
    color: #9370db;
    font-weight: 500;
}

.escort-offer-btn-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0px;
    width: 100%;
}

.escort-offer-btn {
    background: #d32f2f;
    color: #ffffff;
    font-size: 1.1em;
    padding: 12px 36px;
    border-radius: 30px;
    border: none;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    transition: background 0.2s;
}

.escort-offer-btn:hover {
    background: #7b1fa2;
}

@media (max-width: 700px) {

    .escort-media-bg,
    .escort-video {
        width: 98vw;
        height: 60vw;
        min-width: 0;
        min-height: 0;
        max-width: 100%;
        max-height: 60vw;
    }

    .escort-section,
    .escort-desc {
        max-width: 100vw;
        padding: 0 2vw;
    }
}


body {
    background: #000;
    margin: 0;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.night-stand-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background: #000;
    overflow-x: hidden;
}

.night-stand-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.night-stand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 48px 0;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.night-stand-text h2 {
    color: #e7c77e;
    font-size: 2.3rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-family: 'Georgia', serif;
}

.night-stand-text p {
    color: #fff;
    font-size: 1.13rem;
    line-height: 1.7;
    margin-bottom: 30px;
    font-family: 'Georgia', serif;
    max-width: 700px;
}

.night-stand-text a {
    color: #66d9ff;
    /* Changed from #4fc3f7 to a brighter blue for better contrast */
    font-weight: bold;
    text-decoration: underline;
}

.night-stand-text b {
    font-weight: bold;
}

.night-stand-img {
    display: flex;
    align-items: stretch;
    justify-content: center;
    opacity: 0;
    transition: all 2.2s cubic-bezier(0.23, 1, 0.32, 1);
    width: 400px;
    max-width: 100%;
    min-width: 300px;
}

.night-stand-img.visible {
    opacity: 1;
    transform: translateX(0);
}

.desktop-img {
    transform: translateX(120px);
}

.desktop-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 32px 0 rgba(0, 0, 0, 0.38);
    background: #222;
    display: block;
}

.mobile-img {
    display: none;
    justify-content: center;
    align-items: center;
    margin: 20px 0 24px 0;
    width: 100%;
}

.mobile-img img {
    width: 100%;
    max-width: 340px;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 10px 32px 0 rgba(0, 0, 0, 0.38);
    background: #222;
    display: block;
}

@media (max-width: 768px) {
    .night-stand-img {
        min-width: 0;
    }
}

@media (max-width: 480px) {
    .night-stand-text {
        padding: 30px 0;
    }

    .mobile-img {
        margin: 15px 0;
    }

    .mobile-img img {
        border-radius: 10px;
    }
}

@media (max-width: 900px) {
    .night-stand-content {
        flex-direction: column;
        align-items: center;
        padding: 0 15px;
        /* Add padding to both sides */
    }

    .desktop-img {
        display: none !important;
    }

    .mobile-img {
        display: flex !important;
        opacity: 0;
        transform: translateX(80px);
        transition: all 2.2s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .mobile-img.visible {
        opacity: 1;
        transform: translateX(0);
    }

    .night-stand-img {
        width: 100%;
        /* Change from 95vw to 100% */
        max-width: 340px;
        min-width: unset;
    }

    .night-stand-img img {
        width: 100%;
        /* Change from 95vw to 100% */
        max-width: 340px;
        height: auto;
        max-height: 95vw;
    }

    .night-stand-text {
        padding: 24px 15px 0 15px;
        /* Add padding to both sides */
        width: 100%;
        /* Change from 100vw to 100% */
        max-width: 100%;
        /* Change from 100vw to 100% */
    }

    .night-stand-text h2 {
        font-size: 1.3rem;
        margin-bottom: 22px;
        letter-spacing: 1px;
    }

    .night-stand-text p {
        font-size: 1rem;
        margin-bottom: 18px;
        max-width: 100%;
        /* Change from 95vw to 100% */
    }
}

@media (max-width: 500px) {
    .night-stand-text h2 {
        font-size: 1.8rem;
        margin-bottom: 16px;
    }

    .night-stand-text p {
        font-size: 1em;
        margin-bottom: 13px;
    }
}


/* --- PLANE REVEAL BUTTON ANIMATION STYLES (does not affect your section) --- */
.plane-reveal-section {
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80px;
    margin: 50px 0 0 0;
    pointer-events: none;
    z-index: 30;
    background: transparent;
    position: relative;
}

.plane-reveal-btn-wrap {
    width: 98vw;
    max-width: 98vw;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.plane-reveal-btn {
    width: 100%;
    height: 56px;
    background: linear-gradient(90deg, #f8e7b9 0%, #e4b96a 60%, #b8860b 100%);
    border-radius: 28px;
    border: 2.5px solid #fffbe8;
    box-shadow: 0 8px 32px #e4b96a44, 0 2px 12px #b8860b44;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    text-decoration: none;
    transition: box-shadow 0.18s;
}

.plane-reveal-btn:active,
.plane-reveal-btn:focus {
    box-shadow: 0 2px 8px #b8860b99;
}

.plane-reveal-plane {
    position: absolute;
    left: 100%;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.2s;
    background: transparent;
}

.plane-reveal-text {
    position: relative;
    z-index: 1;
    color: #000;
    font-family: 'Georgia', serif;
    font-weight: bold;
    font-size: 1.18rem;
    letter-spacing: 0.01em;
    white-space: nowrap;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    pointer-events: auto;
    user-select: none;
}

.plane-reveal-text span {
    opacity: 0;
    transition: opacity 0.12s cubic-bezier(.68, -0.55, .27, 1.55);
    display: inline-block;
}

@media (max-width: 600px) {

    .plane-reveal-btn-wrap,
    .plane-reveal-btn,
    .plane-reveal-plane {
        height: 44px;
        border-radius: 16px;
    }

    .plane-reveal-text {
        font-size: 0.98rem;
    }
}

.plane-reveal-text span {
    display: inline-block;
    white-space: pre;
}


@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700&display=swap');

.top-rated-escorts-section {
    background: #000;
    padding: 48px 0 24px 0;
    text-align: center;
}

.top-rated-escorts-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: #e7c77e;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 38px;
    font-variant: small-caps;
    font-weight: 700;
    max-width: 1500px;
}

.top-rated-escorts-section p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.25rem;
    color: #fff;
    margin: 0 auto;
    max-width: 800px;
    line-height: 1.5;
}

.top-rated-escorts-section a {
    color: #66d9ff;
    /* Changed from #4fc3f7 to a brighter blue for better contrast */
    font-weight: bold;
    text-decoration: underline;
}


@media (max-width: 600px) {
    .top-rated-escorts-section p {
        font-size: 1em;
    }
}


body {
    font-family: 'Poppins', Arial, sans-serif;
    margin: 0;
    background: #000;
}

.models-section {
    background: #000;
    min-height: 100vh;
    width: 100%;
    padding: 32px 16px 48px 16px;
    box-sizing: border-box;
}

.models-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
gap: 25px;
perspective: 1200px; /* Needed for 3D tilt */
}

@media (min-width: 700px) {
    .models-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1000px) {
    .models-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.model-card {
position: relative;
overflow: hidden;
border-radius: 20px;
box-shadow: 0 8px 20px rgba(0,0,0,0.25);
transition: transform 0.4s ease, box-shadow 0.4s ease;
cursor: pointer;
background: #111;
transform-style: preserve-3d;
}

.model-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.model-card img {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    display: block;
    transition: filter 0.4s;
    border-radius: 0;
    background: #fff;
    z-index: 1;
}

.model-card .brand-mark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.35);
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Poppins', Arial, sans-serif;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    text-shadow: 1px 1px 4px #000;
    z-index: 2;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@media (max-width: 700px) {
    .models-section {
        padding: 20px 10px 30px 10px;
    }

    .models-grid {
        gap: 15px;
    }

    .model-card {
        min-height: 280px;
    }

    .model-card .brand-mark {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .models-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .model-card {
        min-height: 220px;
    }

    .model-card .brand-mark {
        font-size: 0.75rem;
    }
}

.model-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 30, 30, 0.62);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(60px);
    transition: opacity 0.4s cubic-bezier(.4, 0, .2, 1), transform 0.4s cubic-bezier(.4, 0, .2, 1);
    border-radius: 0;
}

.model-info {
    color: #fff;
    padding: 32px 16px 28px 16px;
    width: 100%;
    text-align: center;
    background: linear-gradient(0deg, rgba(30, 30, 30, 0.95) 70%, rgba(30, 30, 30, 0.2) 100%);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(.4, 0, .2, 1);
}

.model-card.active img,
.model-card:hover img {
    filter: blur(2px) brightness(0.7);
}

.model-card.active .model-overlay,
.model-card:hover .model-overlay {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.model-card.active .model-info,
.model-card:hover .model-info {
    transform: translateY(0);
    opacity: 1;
}

.model-info h4 {
    margin: 0 0 12px 0;
    font-size: 1.1rem;
    color: #2c8582;
    letter-spacing: 0.06em;
    font-weight: 600;
}

.model-details {
    list-style: none;
    margin: 0;
    padding: 0;
    font-weight: 300;
    font-size: 0.96rem;
    width: 100%;
    font-family: 'Poppins', Arial, sans-serif;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.model-details li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.model-details .label {
    color: #fff;
    font-weight: 300;
    opacity: 0.85;
    min-width: 70px;
    text-align: left;
    font-size: 0.96rem;
}

.model-details .value {
    color: #3d77d1;
    font-weight: 600;
    text-align: right;
    font-size: 0.96rem;
    margin-left: 16px;
}

@media (max-width: 700px) {
    .models-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .models-section {
padding: 40px;
background: #000;
}

    .model-card {
        min-height: 180px;
    }

    .model-info {
        padding: 18px 7px 18px 7px;
    }

    .model-info h4,
    .model-details .label,
    .model-details .value {
        font-size: 0.84rem;
    }
}

.view-btn {
    display: inline-block;
    background: #2c8582;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 12px;
    transition: background 0.3s ease;
}

.view-btn:hover {
    background: #3d77d1;
}

@media (max-width: 700px) {
    .view-btn {
        padding: 6px 12px;
        font-size: 0.84rem;
    }
}


.features-luxury-section {
    background: linear-gradient(135deg, #372846 0%, #2e3356 100%);
    padding: 32px 0;
    display: flex;
    justify-content: center;
}

.features-luxury-container {
    max-width: 1100px;
    width: 96vw;
    display: flex;
    flex-direction: row;
    background: linear-gradient(120deg, #000 80%, #000 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px #0007;
}

.features-luxury-list {
    flex: 0 0 340px;
    background: #000;
    display: flex;
    flex-direction: column;
    border-right: 2px solid #b8860b44;
}

.feature-luxury-title {
    font-family: 'Georgia', serif;
    font-size: 1.09rem;
    font-weight: bold;
    color: #ffb74d;
    background: #000;
    padding: 18px 24px 18px 32px;
    border: none;
    border-bottom: 1.5px solid #b8860b33;
    cursor: pointer;
    transition: background 0.18s, color 0.18s;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 0.5px;
    position: relative;
}

.feature-luxury-title:last-child {
    border-bottom: none;
}

.feature-luxury-title.active,
.feature-luxury-title:hover {
    background: linear-gradient(90deg, #ffb74d33 20%, #23282f 100%);
    color: #ffffff;
}

.feature-icon {
    font-size: 1.25em;
    margin-right: 8px;
    filter: drop-shadow(0 1px 2px #0006);
}

.features-luxury-details {
    flex: 1 1 0;
    background: #000;
    padding: 32px 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-luxury-desc {
    display: none;
    color: #fff;
    font-size: 1.09rem;
    font-family: 'Georgia', serif;
    line-height: 1.6;
    animation: fadeInLuxury 0.7s;
}

.feature-luxury-desc.active {
    display: block;
}

.feature-luxury-desc p {
    margin: 0 0 12px 0;
}

@keyframes fadeInLuxury {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MOBILE: Stack cards vertically, compact, with more padding */
@media (max-width: 900px) {
    .features-luxury-container {
        flex-direction: column;
        border-radius: 10px;
        box-shadow: 0 2px 10px #000;
    }

    .features-luxury-list,
    .features-luxury-details {
        width: 100%;
        padding: 0;
        border: none;
    }

    .features-luxury-list {
        flex-direction: column;
        border-right: none;
    }

    .feature-luxury-title {
        border-radius: 10px 10px 0 0;
        border-bottom: none;
        font-size: 1.07rem;
        padding: 16px 16px 12px 22px;
        background: #000;
        color: #e7c77e;
        margin-bottom: 0;
        box-shadow: 0 1px 6px #0002;
    }

    .feature-luxury-title.active,
    .feature-luxury-title:hover {
        background: linear-gradient(180deg, #ffb74d33 20%, #23282f 100%);
        color: #ffffff;
    }

    .features-luxury-details {
        padding: 0;
        background: transparent;
    }

    .feature-luxury-desc {
        background: #000;
        color: #fff;
        font-size: 0.98rem;
        padding: 14px 18px 14px 26px;
        border-radius: 0 0 10px 10px;
        margin-bottom: 18px;
        display: none;
        box-shadow: 0 2px 10px #0002;
    }

    .feature-luxury-desc.active {
        display: block;
    }

    .feature-luxury-desc p {
        margin: 0 0 8px 0;
        line-height: 1.4;
        font-size: 0.98rem;
    }
}

@media (max-width: 600px) {
    .feature-luxury-title {
        font-size: 0.97rem;
        padding: 13px 10px 9px 16px;
        border-radius: 8px 8px 0 0;
    }

    .feature-luxury-desc {
        font-size: 1em;
        padding: 10px 10px 10px 18px;
        border-radius: 0 0 8px 8px;
        margin-bottom: 13px;
    }

    .feature-luxury-desc p {
        margin: 0 0 6px 0;
        font-size: 1em;
    }
}


.vip-dehradun-section {
    background: #000;
    width: 100vw;
    min-height: 100vh;
    font-family: 'Georgia', serif;
}

.vip-dehradun-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 16px;
    gap: 48px;
}

.vip-dehradun-text {
    max-width: 700px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.pink-heading {
    color: #e7c77e;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 18px;
    text-align: left;
}

.highlight {
    color: #ffd700;
    font-weight: bold;
}

.highlight2 {
    color: #66d9ff;
    font-weight: bold;
}

.vip-dehradun-text p {
    font-size: 1.13rem;
    line-height: 1.7;
    margin-bottom: 22px;
    text-align: left;
}

.vip-dehradun-img {
    min-width: 500px;
    max-width: 500px;
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.vip-dehradun-img img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.vip-dehradun-img.visible img {
    opacity: 1;
    transform: translateX(0);
}

/* Desktop: show only desktop image, hide mobile image */
.desktop-img {
    display: flex;
}

.mobile-img {
    display: none;
}

/* Mobile styles */
@media (max-width: 900px) {
    .vip-dehradun-content {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 18px 2vw;
    }

    .vip-dehradun-text {
        align-items: center;
        text-align: center;
        max-width: 100vw;
        padding: 0 2vw;
    }

    .pink-heading {
        font-size: 1.8rem;
        margin-top: 0;
        text-align: center;
    }

    .vip-dehradun-text p {
        font-size: 1rem;
        margin-bottom: 15px;
        text-align: center;
    }

    /* Show mobile image below heading, hide desktop image */
    .desktop-img {
        display: none !important;
    }

    .mobile-img {
        display: flex !important;
        width: 100%;
        max-width: 100vw;
        margin: 0 0 18px 0;
        justify-content: center;
    }

    .mobile-img img {
        width: 95vw;
        max-width: 340px;
        margin: 0 auto;
        border-radius: 12px;
    }
}


.independent-dehradun-section {
    background: #000;
    width: 100vw;
    min-height: 100vh;
    font-family: 'Georgia', serif;
    padding: 0;
    margin: 0;
}

.independent-dehradun-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 16px;
    gap: 64px;
}

.independent-dehradun-img {
    min-width: 500px;
    max-width: 600px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-top: 30px;
    margin-left: -200px;
    /* Move image further left */
}

.desktop-img img {
    width: 100%;
    max-width: 600px;
    height: 900px;
    border-radius: 8px;
    border-right: 5px solid #ff2c7d;
    background: #fff;
    display: block;
    box-sizing: border-box;
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.desktop-img.visible img {
    opacity: 1;
    transform: translateX(0);
}

.independent-dehradun-text {
    max-width: 800px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 100px;

}

.independent-pink-heading {
    color: #e7c77e;
    font-size: 2.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
    line-height: 1.2;
}

.np-escort-divider-center {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.np-escort-divider {
    width: 150px;
    height: 3px;
    margin: 20px auto;
    background: linear-gradient(90deg, transparent, #ff69b4, transparent);
    position: relative;
    overflow: hidden;
}

.np-escort-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.independent-dehradun-text p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 22px;
    text-align: center;
    color: #e5e6e8;
}

.independent-highlight {
    color: #ffd700;
    font-weight: bold;
}

.independent-bold {
    color: #fff;
    font-weight: bold;
}

/* MOBILE VERSION: NO CHANGES! */
@media (max-width: 900px) {
    .independent-dehradun-content {
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 18px 2vw;
    }

    .desktop-img {
        display: none !important;
    }

    .independent-dehradun-img {
        min-width: unset;
        max-width: unset;
        width: 100%;
        margin: 10px 0 10px 0;
        justify-content: center;
        padding-top: 0;
        margin-left: 0;
    }

    .independent-dehradun-img img {
        width: 95vw;
        max-width: 340px;
        border-radius: 8px;
        border-right: none;
        border-bottom: 4px solid #ff2c7d;
        margin: 0 auto;
        display: block;
        opacity: 0;
        transform: translateX(-60px);
        transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .independent-dehradun-img.visible img {
        opacity: 1;
        transform: translateX(0);
    }

    .independent-dehradun-text {
        align-items: center;
        text-align: center;
        max-width: 100vw;
        padding: 0 2vw;
    }

    .independent-pink-heading {
        font-size: 1.8rem;
        margin-top: 0;
        text-align: center;
    }

    .np-escort-divider-center {
        margin-bottom: 18px;
    }

    .independent-dehradun-text p {
        font-size: 1em;
        margin-bottom: 13px;
        text-align: center;
    }
}

.independent-dehradun-img.mobile-img {
    display: none;
}

@media (max-width: 900px) {
    .desktop-img {
        display: none !important;
    }

    .mobile-img {
        display: flex !important;
        width: 100%;
        max-width: 100vw;
        margin: 10px 0 10px 0;
        justify-content: center;
    }

    .mobile-img img {
        width: 95vw;
        max-width: 340px;
        border-radius: 8px;
        border-right: none;
        border-bottom: 4px solid #ff2c7d;
        margin: 0 auto;
        display: block;
        opacity: 0;
        transform: translateX(-60px);
        transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .mobile-img.visible img {
        opacity: 1;
        transform: translateX(0);
    }
}


body {
    background: #000;
    margin: 0;
}

.escort-section {
    background: linear-gradient(135deg, #372846 0%, #2e3356 100%);
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    padding: 40px 0 40px 0;
}

.escort-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.escort-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #f12385;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.escort-section .divider {
    width: 120px;
    height: 32px;
    margin: 0 auto 32px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.escort-section .divider svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* DESKTOP VERSION */
.escort-grid-desktop {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px 40px;
    padding: 0;
}

.escort-card-desktop {
    display: flex;
    align-items: center;
    background: transparent;
    border: none;
    box-shadow: none;
    min-height: 220px;
    border-radius: 22px;
    padding: 0;
}

.escort-image-border-desktop {
    width: 210px;
    height: 320px;
    min-width: 210px;
    margin: 0 32px 0 0;
    border: 6px solid transparent;
    border-radius: 22px;
    box-sizing: border-box;
    background: #222;
    overflow: hidden;
    position: relative;
    z-index: 1;
    /* Animation start state */
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.7s cubic-bezier(.22, 1, .36, 1), transform 0.7s cubic-bezier(.22, 1, .36, 1);
}

.escort-image-border-desktop.revealed {
    opacity: 1;
    transform: scale(1);
}

.escort-image-border-desktop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    background: #222;
    z-index: 2;
    position: relative;
}

.escort-card-content-desktop {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #000;
    border-radius: 22px;
    min-height: 80px;
    height: auto;
    box-sizing: border-box;
    padding: 0 0 0 8px;
    max-width: 520px;
    overflow: visible;
    align-items: flex-start;
    text-align: left;
}

.escort-card-content-desktop h3 {
    font-family: 'Playfair Display', serif;
    color: #f12385;
    font-size: 17px;
    margin-bottom: 8px;
    font-weight: 700;
    text-align: left;
    letter-spacing: 0.1px;
}

.escort-card-content-desktop p {
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
    color: #fff;
    text-align: left;
    overflow: visible;
    text-overflow: unset;
    display: block;
}

.escort-card-content-desktop a {
    color: #00bfff;
    text-decoration: underline;
    word-break: break-all;
}

/* MOBILE VERSION */
.escort-grid-mobile {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 0 8px;
}

.escort-card-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 22px;
    padding: 18px 0 18px 0;
}

.escort-card-mobile h3 {
    font-family: 'Playfair Display', serif;
    color: #f12385;
    font-size: 1.15rem;
    margin: 0 0 14px 0;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.1px;
}

.escort-image-border-mobile {
    width: 92vw;
    max-width: 280px;
    height: 320px;
    margin: 0 0 16px 0;
    border: 5px solid transparent;
    border-radius: 22px;
    box-sizing: border-box;
    background: #222;
    overflow: hidden;
    position: relative;
    z-index: 1;
    /* Animation start state */
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.7s cubic-bezier(.22, 1, .36, 1), transform 0.7s cubic-bezier(.22, 1, .36, 1);
}

.escort-image-border-mobile.revealed {
    opacity: 1;
    transform: scale(1);
}

.escort-image-border-mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    background: #222;
    z-index: 2;
    position: relative;
}

.escort-card-mobile p {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0 0 0px 0;
    color: #fff;
    text-align: center;
    padding: 0 0px;
}

.escort-card-mobile a {
    color: #00bfff;
    text-decoration: underline;
    word-break: break-all;
}

/* SHOW/HIDE LOGIC */
.escort-grid-desktop {
    display: none;
}

.escort-grid-mobile {
    display: flex;
}

@media (min-width: 900px) {
    .escort-grid-desktop {
        display: grid;
    }

    .escort-grid-mobile {
        display: none;
    }
}


.travel-escorts-in-dehradun-section {
    background: linear-gradient(135deg, #ffffff 60%, #2d1e4f 100%);
    width: 100vw;
    min-height: 80vh;
    font-family: 'Georgia', serif;
    padding: 0;
    margin: 0;
}

.travel-escorts-in-dehradun-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 16px;
    gap: 64px;
}

.travel-escorts-in-dehradun-text {
    max-width: 800px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 80px;
}

.travel-escorts-gold-heading {
    color: #e7c77e;
    font-size: 2.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: left;
    line-height: 1.2;
    letter-spacing: 1px;
}

.travel-escorts-subheading {
    color: #ff2b7a;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 18px;
    text-align: left;
}

.travel-escorts-paragraph {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 18px;
    text-align: left;
    color: #e5e6e8;
}

.travel-escorts-highlight-heading {
    color: #ffd700;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 18px 0 10px 0;
    text-align: left;
}

.travel-escorts-cta-btn {
    background: linear-gradient(90deg, #e7c77e 0%, #ff2b7a 100%);
    color: #ffffff;
    border: none;
    border-radius: 30px;
    padding: 14px 36px;
    font-size: 1.1rem;
    font-weight: bold;
    margin: 24px 0 10px 0;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(255, 215, 0, 0.18);
    transition: background 0.3s, color 0.3s, transform 0.2s;
    display: inline-block;
}

.travel-escorts-cta-btn h5 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: bold;
    color: inherit;
}

.travel-escorts-cta-btn:hover {
    background: linear-gradient(90deg, #ff2b7a 0%, #e7c77e 100%);
    color: #fff;
    transform: translateY(-2px) scale(1.04);
}

.travel-escorts-cta-desc {
    color: #e7c77e;
    font-size: 1rem;
    margin-bottom: 0;
    text-align: left;
}

.travel-escorts-in-dehradun-img {
    min-width: 400px;
    max-width: 500px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-top: 30px;
    position: relative;
}

/* Travel Image Slider Styles */
.travel-image-slider {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 600px;
    border-radius: 12px;
    border-left: 5px solid #e7c77e;
    background: #fff;
    overflow: hidden;
    box-sizing: border-box;
}

.travel-slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.travel-slider-image.active {
    opacity: 1;
    transform: translateX(0);
}

.travel-slider-image.prev {
    transform: translateX(-100%);
}

/* Travel Slider Dots */
.travel-slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
}

.travel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(231, 199, 126, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.travel-dot:hover {
    background-color: rgba(231, 199, 126, 0.6);
}

.travel-dot.active {
    background-color: #e7c77e;
    transform: scale(1.2);
}

@media (max-width: 900px) {
    .travel-escorts-in-dehradun-content {
        flex-direction: column-reverse;
        align-items: center;
        gap: 0;
        padding: 18px 2vw;
    }

    .travel-escorts-in-dehradun-img {
        min-width: unset;
        max-width: unset;
        width: 100%;
        margin: 10px 0 10px 0;
        justify-content: center;
        padding-top: 0;
    }

    .travel-escorts-in-dehradun-text {
        padding-right: 0;
        padding-top: 18px;
        text-align: center;
    }

    .travel-escorts-gold-heading,
    .travel-escorts-subheading,
    .travel-escorts-paragraph,
    .travel-escorts-highlight-heading,
    .travel-escorts-cta-desc {
        text-align: center;
    }

    .travel-image-slider {
        height: 500px;
    }

    .travel-slider-dots {
        margin-top: 10px;
    }

    .travel-dot {
        width: 10px;
        height: 10px;
    }
}


.dehradun-airport-escorts-section {
    background: linear-gradient(135deg, #ffffff 60%, #2d1e4f 100%);
    width: 100vw;
    min-height: 80vh;
    font-family: 'Georgia', serif;
    padding: 0;
    margin: 0;
}

.dehradun-airport-escorts-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 16px;
    gap: 64px;
}

.dehradun-airport-escorts-text {
    max-width: 800px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 80px;
}

.dehradun-airport-gold-heading {
    color: #e7c77e;
    font-size: 2.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: left;
    line-height: 1.2;
    letter-spacing: 1px;
}

.dehradun-airport-subheading {
    color: #ff2b7a;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 18px;
    text-align: left;
}

.dehradun-airport-paragraph {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 18px;
    text-align: left;
    color: #e5e6e8;
}

.dehradun-airport-highlight-heading {
    color: #ffd700;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 18px 0 10px 0;
    text-align: left;
}

.dehradun-airport-cta-btn {
    background: linear-gradient(90deg, #e7c77e 0%, #ff2b7a 100%);
    color: #ffffff;
    border: none;
    border-radius: 30px;
    padding: 14px 36px;
    font-size: 1.1rem;
    font-weight: bold;
    margin: 24px 0 10px 0;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(255, 215, 0, 0.18);
    transition: background 0.3s, color 0.3s, transform 0.2s;
    display: inline-block;
}

.dehradun-airport-cta-btn h5 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: bold;
    color: inherit;
}

.dehradun-airport-cta-btn:hover {
    background: linear-gradient(90deg, #ff2b7a 0%, #e7c77e 100%);
    color: #fff;
    transform: translateY(-2px) scale(1.04);
}

.dehradun-airport-cta-desc {
    color: #e7c77e;
    font-size: 1rem;
    margin-bottom: 0;
    text-align: left;
}

.dehradun-airport-escorts-img {
    min-width: 400px;
    max-width: 500px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 30px;
    position: relative;
}

/* Image Slider Styles */
.image-slider {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 600px;
    border-radius: 12px;
    border-right: 5px solid #e7c77e;
    background: #fff;
    overflow: hidden;
    box-sizing: border-box;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.slider-image.active {
    opacity: 1;
    transform: translateX(0);
}

.slider-image.prev {
    transform: translateX(-100%);
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(231, 199, 126, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background-color: rgba(231, 199, 126, 0.6);
}

.dot.active {
    background-color: #e7c77e;
    transform: scale(1.2);
}

@media (max-width: 900px) {
    .dehradun-airport-escorts-content {
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 18px 2vw;
    }

    .dehradun-airport-escorts-img {
        min-width: unset;
        max-width: unset;
        width: 100%;
        margin: 10px 0 10px 0;
        justify-content: center;
        padding-top: 0;
    }

    .dehradun-airport-escorts-text {
        padding-left: 0;
        padding-top: 18px;
        text-align: center;
    }

    .dehradun-airport-gold-heading,
    .dehradun-airport-subheading,
    .dehradun-airport-paragraph,
    .dehradun-airport-highlight-heading,
    .dehradun-airport-cta-desc {
        text-align: center;
    }

    .image-slider {
        height: 500px;
    }

    .slider-dots {
        margin-top: 10px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }
}


.dehradun-agency-section {
    background: #000;
    padding: 100px 30px;
    position: relative;
    overflow: hidden;
}

.agency-container {
    max-width: 1400px;
    margin: 0 auto;
}

.agency-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.agency-text-full-width {
    grid-column: 1 / -1;
    width: 100%;
}

.agency-heading {
    font-size: 3.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
}

.agency-intro-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.intro-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 25px rgba(255, 43, 122, 0.2);
}

.intro-image:hover {
    transform: scale(1.08);
    box-shadow: 0 15px 35px rgba(255, 43, 122, 0.4);
}

.agency-paragraph {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.7;
    font-family: 'Poppins', Arial, sans-serif;
}

.agency-subheading {
    font-size: 2.4rem;
    font-weight: 600;
    color: #ff2b7a;
    margin: 50px 0 30px 0;
    font-family: 'Montserrat', sans-serif;
}

.agency-showcase {
    position: relative;
    margin: 40px 0;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(255, 43, 122, 0.4);
}

.showcase-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: #fff;
    padding: 40px 30px 30px;
    text-align: center;
}

.showcase-overlay h4 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ff2b7a;
}

.showcase-overlay p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.agency-features {
    margin: 50px 0;
}

.agency-feature {
    margin-bottom: 45px;
    background: rgba(255, 43, 122, 0.15);
    border-radius: 20px;
    border-left: 6px solid #ff2b7a;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    box-shadow: 0 10px 25px rgba(255, 43, 122, 0.2);
}

.feature-image {
    flex: 0 0 280px;
    position: relative;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.agency-feature:hover .feature-image img {
    transform: scale(1.15);
}

.feature-content {
    flex: 1;
    padding: 35px;
}

.feature-heading {
    font-size: 1.6rem;
    font-weight: 600;
    color: #ff2b7a;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.feature-text {
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.7;
    font-family: 'Poppins', Arial, sans-serif;
}

.agency-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 50px 0;
}

.gallery-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 43, 122, 0.2);
}

.gallery-image:hover {
    transform: scale(1.12);
    box-shadow: 0 12px 30px rgba(255, 43, 122, 0.4);
}

.agency-cta-heading {
    font-size: 2.2rem;
    font-weight: 600;
    color: #ff2b7a;
    margin: 50px 0 30px 0;
    font-family: 'Montserrat', sans-serif;
}

.agency-sidebar {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sidebar-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(255, 43, 122, 0.4);
}

.sidebar-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.sidebar-image:hover img {
    transform: scale(1.08);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: #fff;
    padding: 30px;
    text-align: center;
}

.image-overlay h4 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ff2b7a;
}

.image-overlay p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.sidebar-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    background: #607D8B;
    padding: 35px;
    border-radius: 20px;
    border: 2px solid rgb(24 112 115 / 56%);
    box-shadow: 0 10px 25px rgb(26 101 92 / 39%);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffff;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    font-size: 1.1rem;
    color: #fff;
    opacity: 0.9;
    font-family: 'Poppins', Arial, sans-serif;
}

.sidebar-cta {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgb(7 82 96 / 47%);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sidebar-cta:hover {
    transform: translateY(-10px);
     box-shadow:
      0 0 10px rgba(0, 0, 139, 0.25),   /* inner glow - softer */
    0 0 20px rgba(70, 130, 180, 0.25),/* mid glow - steel blue */
    0 0 30px rgba(25, 25, 112, 0.3);  /* outer glow - midnight blue */
}

.sidebar-cta .cta-link {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.sidebar-cta img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sidebar-cta:hover img {
    transform: scale(1.1) rotate(2deg);
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgb(23 126 159 / 90%), rgb(18 6 26 / 80%));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.sidebar-cta:hover .cta-overlay {
    background: linear-gradient(135deg, rgb(56 89 72 / 95%), rgb(0 0 0));
    transform: scale(1.05);
}

.cta-overlay h4 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.sidebar-cta:hover .cta-overlay h4 {
    transform: scale(1.1);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

.cta-overlay p {
    font-size: 1.2rem;
    opacity: 0.9;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.sidebar-cta:hover .cta-overlay p {
    opacity: 1;
    transform: translateY(-5px);
}

.cta-icon {
    font-size: 2.5rem;
    margin-top: 10px;
    transition: all 0.4s ease;
    animation: pulse 2s infinite;
}

.sidebar-cta:hover .cta-icon {
    transform: scale(1.2) rotate(10deg);
    animation: bounce 0.6s ease-in-out;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) scale(1.2);
    }

    40% {
        transform: translateY(-10px) scale(1.2);
    }

    60% {
        transform: translateY(-5px) scale(1.2);
    }
}

@media (max-width: 768px) {
    .dehradun-agency-section {
        padding: 80px 20px;
    }

    .agency-container {
        max-width: 100%;
    }

    .agency-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .agency-heading {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }

    .agency-subheading {
        font-size: 2rem;
        margin: 40px 0 25px 0;
    }

    .agency-cta-heading {
        font-size: 1.8rem;
        margin: 40px 0 25px 0;
    }

    .agency-feature {
        flex-direction: column;
    }

    .feature-image {
        flex: none;
        height: 250px;
    }

    .feature-content {
        padding: 30px;
    }

    .feature-heading {
        font-size: 1.4rem;
    }

    .feature-text {
        font-size: 1rem;
    }

    .agency-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .gallery-image {
        height: 180px;
    }

    .sidebar-stats {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 30px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .intro-image {
        height: 220px;
    }

    .showcase-image {
        height: 300px;
    }

    .sidebar-image img {
        height: 300px;
    }

    .sidebar-cta img {
        height: 220px;
    }

    .sidebar-cta:hover {
        transform: translateY(-5px);
    }

    .sidebar-cta:hover img {
        transform: scale(1.05) rotate(1deg);
    }

    .cta-icon {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .dehradun-agency-section {
        padding: 60px 15px;
    }

    .agency-heading {
        font-size: 2.2rem;
    }

    .agency-subheading {
        font-size: 1.8rem;
    }

    .agency-cta-heading {
        font-size: 1.6rem;
    }

    .agency-intro-images {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .intro-image {
        height: 200px;
    }

    .agency-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-image {
        height: 160px;
    }

    .feature-image {
        height: 200px;
    }

    .showcase-image {
        height: 250px;
    }

    .sidebar-image img {
        height: 250px;
    }

    .sidebar-cta img {
        height: 180px;
    }

    .cta-icon {
        font-size: 1.8rem;
    }
}


body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background: #000;
    color: #fff;
}

.escort-section {
    max-width: 1300px;
    margin: 0 auto;
    padding: 10px 20px 30px 20px;
}

.escort-section h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.4rem;
    color: #e7c77e;
    text-align: center;
    margin-bottom: 6px;
    letter-spacing: 1.5px;
    font-weight: 700;
    text-shadow: 0 2px 12px #0006;
}

.escort-section .divider {
    text-align: center;
    font-size: 36px;
    color: #e7c77e;
    margin-bottom: 32px;
    letter-spacing: 2px;
}

.escort-section p.description {
    font-size: 1em;
    color: #e7e3d1;
    text-align: center;
    line-height: 1.7;
    margin-bottom: 44px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px #0003;
}

.escort-card {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 36px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(60px) scale(0.97);
    transition: opacity 0.9s cubic-bezier(.22, 1, .36, 1), transform 0.9s cubic-bezier(.22, 1, .36, 1);
    will-change: opacity, transform;
    min-height: 180px;
}

.escort-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.escort-card:nth-child(even) {
    flex-direction: row-reverse;
}

.escort-img-wrap {
    position: relative;
    width: 350px;
    height: 520px;
    /* Reduced height, full width */
    min-width: 320px;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.escort-img-border {
    --angle: 0deg;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 28px;
    z-index: 1;
    pointer-events: none;
    border: 8px solid transparent;
    /* Spinning arc border (partial arc, not full ring) */
    border-image: conic-gradient(from var(--angle),
            #e7c77e 0deg,
            #e7c77e 80deg,
            transparent 90deg,
            transparent 320deg,
            #e91e63 330deg,
            #e91e63 350deg,
            transparent 350deg,
            transparent 360deg) 1;
    transition: border-image 0.3s;
}

.escort-img {
    width: 320px;
    height: 500px;
    object-fit: cover;
    border-radius: 28px;
    border: 2.5px solid #fff3;
    background: #0a0a0a;
    z-index: 2;
    position: relative;
    opacity: 0;
    transform: scale(0.92) translateY(30px);
    transition: opacity 0.9s cubic-bezier(.22, 1, .36, 1), transform 0.9s cubic-bezier(.22, 1, .36, 1);
    display: block;
}

.escort-card.visible .escort-img {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.escort-info {
    background: rgba(30, 30, 30, 0.85);
    color: #f5e9c8;
    padding: 22px 28px 18px 28px;
    max-width: 750px;
    /* smaller than image container */
    font-size: 1.08rem;
    border-radius: 24px 48px 20px 20px / 20px 20px 48px 24px;
    box-shadow: none;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateY(30px) scale(0.96);
    transition: opacity 0.9s cubic-bezier(.22, 1, .36, 1), transform 0.9s cubic-bezier(.22, 1, .36, 1);
    border-left: 4px solid #e7c77e;
    background-image: linear-gradient(120deg, #292929 60%, #e7c77e22 100%);
    overflow: hidden;
}

.escort-card.visible .escort-info {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.escort-info h2 {
    margin-top: 0;
    font-weight: 700;
    font-size: 1.13rem;
    color: #e7c77e;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-family: 'Merriweather', serif;
    text-shadow: none;
}

.escort-info.red-border {
    border-left: 4px solid #e7c77e;
}

.escort-info.pink-bg {
    background-image: linear-gradient(120deg, #e91e63 0%, #292929 100%);
    color: #fff;
    border-left: 4px solid #e91e63;
}

.escort-info.pink-bg h2 {
    color: #fff;
}

.footer {
    font-size: 1em;
    color: #e7e3d1;
    text-align: center;
    line-height: 1.7;
    padding: 36px 0 0;
    max-width: 900px;
    margin: 0 auto;
    text-shadow: 0 1px 2px #0003;
}

.footer b {
    color: #e7c77e;
}

/* Responsive */
@media (max-width: 900px) {
    .escort-card {
        flex-direction: column !important;
        gap: 50px;
        margin-bottom: 20px;
        min-height: 0;
    }

    .escort-img-wrap,
    .escort-img {
        width: 90vw;
        max-width: 220px;
        height: 250px;
        min-width: 0;
        min-height: 0;
    }

    .escort-img-border {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-width: 5px;
        border-radius: 14px;
    }

    .escort-img {
        border-radius: 14px;
    }

    .escort-info {
        padding: 12px 8px 12px 12px;
        font-size: 0.98rem;
        max-width: 100vw;
        margin: 0 auto;
        border-radius: 10px 18px 10px 10px / 10px 10px 18px 10px;
    }
}


body {
    margin: 0;
    background: #8b97a9;
}

.nightpartner-section {
    display: flex;
    flex-direction: column;
    font-family: serif;
    color: #fff;
    width: 100%;
}

.nightpartner-col {
    width: 100%;
    box-sizing: border-box;
    padding: 2.5rem 1rem;
}

.nightpartner-col-left {
    background: rgba(235, 20, 113, 0.95);
}

.nightpartner-col-right {
    background: rgba(67, 22, 94, 0.95);
}

.nightpartner-title,
.nightpartner-titles {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #fff;
}

.nightpartner-text,
.nightpartner-texts {
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1rem;
}

.nightpartner-bold {
    font-weight: bold;
}

.nightpartner-highlight {
    color: #ff8c00;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
    transition: color 0.3s ease;
}

.nightpartner-special {
    color: #ffd700;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .nightpartner-section {
        flex-direction: row;
    }

    .nightpartner-col {
        width: 50%;
        padding: 3rem 2rem;
    }

    .nightpartner-title,
    .nightpartner-titles {
        font-size: 2.5rem;
    }

    .nightpartner-text,
    .nightpartner-texts {
        font-size: 1.1rem;
    }
}


.np-escort-section {
    background-color: #000;
    color: #fff;
    font-family: 'Open Sans', Arial, sans-serif;
    padding: 4rem 1.5rem;
}

.np-escort-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .np-escort-container {
        flex-direction: row;
        gap: 2.5rem;
        align-items: flex-start;
    }
}

.np-escort-text {
    flex: 2;
    min-width: 0;
    text-align: center;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 768px) {
    .np-escort-text {
        text-align: center;
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
}

.np-escort-title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffa726;
    margin-bottom: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .np-escort-title {
        font-size: 2.5rem;
        text-align: center;
    }
}

.np-escort-divider-center {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.np-escort-divider {
    width: 150px;
    height: 3px;
    margin: 20px auto;
    background: linear-gradient(90deg, transparent, #ff69b4, transparent);
    position: relative;
    overflow: hidden;
}

.np-escort-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.np-escort-desc {
    font-size: 1.13rem;
    line-height: 1.7;
    margin-bottom: 1.3rem;
    text-align: center;
}

.np-escort-highlight {
    color: #b0c4de;
    font-weight: 600;
}

.np-escort-img-col {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-width: 0;
}

.np-escort-img {
    width: 100%;
    max-width: 320px;
    border-radius: 0;
    border: 4px solid #ec4899;
    object-fit: cover;
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.18);
    opacity: 0;
    transform: translateX(80px);
    transition: opacity 0.7s cubic-bezier(.22, 1, .36, 1), transform 0.7s cubic-bezier(.22, 1, .36, 1);
}

.np-escort-img.visible {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 767px) {
    .np-escort-section {
        padding: 2.5rem 0.5rem;
    }

    .np-escort-img {
        max-width: 95vw;
    }

    .np-escort-title {
        text-align: center;
    }

    .np-escort-text {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .np-escort-desc {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .np-escort-desc {
        font-size: 1em;
    }
}


.seductive-luxury-section {
    background: linear-gradient(135deg, #372846 0%, #2e3356 100%);
    padding: 5rem 0 5rem 0;
    position: relative;
    overflow: hidden;
}

.seductive-luxury-section::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 20%, #ff3366 0%, transparent 60%);
    opacity: 0.11;
    pointer-events: none;
    z-index: 0;
}

.seductive-luxury-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2vw;
    position: relative;
    z-index: 2;
}

.seductive-luxury-title {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: 2.1rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: 1.2px;
    margin-bottom: 0.7rem;
    text-shadow: 0 2px 24px #000000cc;
}

.seductive-luxury-intro {
    color: #ffffff;
    text-align: center;
    font-size: 1.13rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    letter-spacing: 0.2px;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.seductive-luxury-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2rem;
}

.seductive-luxury-card {
    display: flex;
    align-items: center;
    background: rgba(30, 10, 30, 0.92);
    border-radius: 2.2rem;
    box-shadow: 0 4px 48px #ff336644, 0 1.5px 8px #fff1;
    border: 2px solid #a56c3b;
    position: relative;
    overflow: hidden;
    min-height: 210px;
    transition: box-shadow 0.4s, border-color 0.4s, transform 0.33s;
}

.seductive-luxury-card:nth-child(even) {
    flex-direction: row-reverse;
    background: rgba(30, 10, 30, 0.96);
}

.seductive-luxury-card:hover {
    box-shadow: 0 8px 64px #ff3366cc, 0 1.5px 18px #fff3;
    border-color: #ffb347;
    transform: scale(1.03) translateY(-6px);
    z-index: 2;
}

.seductive-luxury-icon-area {
    flex: none;
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 2rem;
    position: relative;
    z-index: 2;
}

.seductive-luxury-icon {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 2px 18px #ff3366cc);
    animation: seductivePulse 3.7s infinite cubic-bezier(.62, 0, .36, 1.2);
    transition: filter 0.4s;
    display: block;
}

@keyframes seductivePulse {
    0% {
        filter: drop-shadow(0 2px 18px #ff3366cc) brightness(1);
    }

    50% {
        filter: drop-shadow(0 2px 32px #ffb347cc) brightness(1.15);
    }

    100% {
        filter: drop-shadow(0 2px 18px #ff3366cc) brightness(1);
    }
}

.seductive-luxury-card:hover .seductive-luxury-icon {
    filter: drop-shadow(0 2px 32px #ffb347cc) brightness(1.2);
}

.seductive-luxury-content {
    flex: 1;
    padding: 2rem 1.5rem;
    position: relative;
    z-index: 2;
    text-align: center;
    /* Center all content */
}

.seductive-luxury-content h3 {
    color: #ffb347;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
    text-align: center;
    /* Center heading */
}

.seductive-luxury-content p {
    color: #ffffff;
    font-size: 1em;
    line-height: 1.6;
    margin: 0;
    text-align: center;
    /* Center paragraph */
}

@media (max-width: 800px) {
    .seductive-luxury-list {
        gap: 1.5rem;
    }

    .seductive-luxury-card,
    .seductive-luxury-card:nth-child(even) {
        flex-direction: column;
        min-height: 0;
        border-radius: 1.2rem;
    }

    .seductive-luxury-icon-area {
        margin: 1.2rem 0 0.2rem 0;
    }

    .seductive-luxury-content {
        padding: 1.2rem 0.7rem;
    }
}


.nodrugs-creative-card {
    width: 100vw;
    min-height: 410px;
    background: #0a0a0a;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    box-sizing: border-box;
    padding: 0;
    flex-wrap: wrap;
}

.nodrugs-left {
    flex: 2 1 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3.2rem 2rem 3.2rem 6vw;
    min-width: 320px;
    text-align: center;
    position: relative;
}

.nodrugs-headline {
    font-family: 'Creepster', cursive;
    font-size: 4.5rem;
    color: #ff3ca6;
    margin-bottom: 1.1rem;
    line-height: 1;
    letter-spacing: 0.06em;
    text-shadow:
        0 6px 0 #0a0a0a,
        0 0 14px #ff3ca6cc;
    text-align: center;
    width: 100%;
}

.nodrugs-policy {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1em;
    color: #ffffff;
    line-height: 1.7;
    max-width: 700px;
    margin-bottom: 0;
    text-shadow: 0 2px 12px #000a;
    text-align: center;
    width: 100%;
}

.nodrugs-right {
    flex: 1 1 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.2rem 6vw 2.2rem 2rem;
    min-width: 320px;
    text-align: center;
}

.nodrugs-prohibited-heading {
    font-family: 'Orbitron', Arial, sans-serif;
    font-size: 2.1rem;
    color: #00fff7;
    letter-spacing: 0.1em;
    margin-bottom: 1.2rem;
    text-shadow: 0 0 18px #00fff7cc, 0 2px 0 #222;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
}

.nodrugs-icons-row {
    display: flex;
    flex-direction: row;
    gap: 2.8rem;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
}

.nodrugs-icon-img {
    width: 68px;
    height: 68px;
    object-fit: contain;
    background: transparent;
    border-radius: 1.2rem;
    box-shadow: 0 0 18px #00fff7, 0 0 36px #ff3ca6;
    filter: grayscale(0.05) brightness(1.12);
    transition: filter 0.2s, box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
    display: inline-block;
}

.nodrugs-icon-img:hover {
    animation: iconVibrateModern 0.22s linear infinite;
    filter: brightness(1.3) drop-shadow(0 0 14px #ff3ca6) drop-shadow(0 0 8px #00fff7);
    box-shadow: 0 0 40px #ff3ca6, 0 0 32px #00fff7;
}

.nodrugs-mobile-prohibited {
    display: none;
}

@keyframes iconVibrateModern {
    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(-8deg);
    }

    20% {
        transform: rotate(8deg);
    }

    30% {
        transform: rotate(-8deg);
    }

    40% {
        transform: rotate(8deg);
    }

    50% {
        transform: rotate(-8deg);
    }

    60% {
        transform: rotate(8deg);
    }

    70% {
        transform: rotate(-8deg);
    }

    80% {
        transform: rotate(8deg);
    }

    90% {
        transform: rotate(-8deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

@media (max-width: 900px) {
    .nodrugs-creative-card {
        flex-direction: column;
    }

    .nodrugs-left,
    .nodrugs-right {
        padding: 2rem 1.2rem;
        align-items: center;
        text-align: center;
        min-width: 0;
        width: 100%;
    }

    .nodrugs-headline {
        font-size: 2.2rem;
    }

    .nodrugs-prohibited-heading {
        font-size: 1.2rem;
    }

    .nodrugs-icons-row {
        gap: 1.2rem;
    }

    .nodrugs-icon-img {
        width: 40px;
        height: 40px;
    }

    /* Hide the right column on mobile */
    .nodrugs-right {
        display: none !important;
    }

    /* Show the mobile prohibited block in left column */
    .nodrugs-mobile-prohibited {
        display: block;
        margin-bottom: 1.2rem;
    }
}


@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Montserrat:wght@500;700&display=swap');

.seductive-section {
    width: 100vw;
    min-height: 100vh;
    background: linear-gradient(120deg, #0a0a0a 80%, #1a0f1e 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0 0 4vw 0;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.seductive-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    color: #ff3ca6;
    letter-spacing: 0.04em;
    margin-top: 3vw;
    margin-bottom: 0.7rem;
    text-align: center;
}

.seductive-divider {
    width: 150px;
    height: 5px;
    background: linear-gradient(90deg, #ffd700 0%, #ff3ca6 100%);
    border-radius: 3px;
    margin: 0 auto 2vw auto;
    box-shadow: 0 0 18px #ffd70099;
    animation: dividerGlow 2s infinite alternate;
}

@keyframes dividerGlow {
    0% {
        box-shadow: 0 0 18px #ffd70099;
    }

    100% {
        box-shadow: 0 0 32px #ff3ca699;
    }
}

.seductive-cards-row {
    display: flex;
    gap: 2.5vw;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2vw;
    width: 100%;
    max-width: 1400px;
}

.seductive-card {
    background: rgba(20, 12, 22, 0.85);
    border-radius: 2rem;
    border: 2px solid #ffd70077;
    box-shadow: 0 4px 48px #ff3ca622, 0 2px 12px #0009;
    padding: 2.2rem 2rem 1.7rem 2rem;
    min-width: 300px;
    max-width: 340px;
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center card content horizontally */
    margin-bottom: 2vw;
    position: relative;
    backdrop-filter: blur(7px);
    transition: box-shadow 0.3s, border-color 0.3s;
    text-align: center;
    /* Center all text in card */
}

.seductive-card:hover {
    border-color: #ffd700;
    box-shadow: 0 0 48px #ff3ca6cc, 0 0 18px #ffd700bb;
}

.seductive-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    color: #ffd700;
    margin-bottom: 0.7rem;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 12px #ffecb3, 0 0 12px #ffd70044;
    text-align: center;
    /* Center heading */
    width: 100%;
}

.seductive-card p {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.07rem;
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 0;
    text-shadow: 0 1px 8px #0008;
    text-align: center;
    /* Center paragraph */
    width: 100%;
}

.seductive-card strong,
.seductive-card b {
    color: #ff3ca6;
    font-weight: 700;
}

@media (max-width: 900px) {
    .seductive-heading {
        font-size: 2.1rem;
    }

    .seductive-cards-row {
        flex-direction: column;
        gap: 2vw;
    }

    .seductive-card {
        max-width: 98vw;
        min-width: 0;
    }
}


.svg-lux-section {
    width: 100vw;
    background: linear-gradient(120deg, #000 70%, #000 100%);
    padding: 0 0 4vw 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.svg-lux-inner {
    max-width: 1200px;
    width: 100%;
    padding: 4vw 6vw 0 6vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center inner content horizontally */
    text-align: center;
    /* Center all text inside */
}

.svg-lux-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    color: #ffd700;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin-bottom: 0.2rem;
    text-shadow: 0 2px 18px #ffd70066, 0 0 24px #ff3ca633;
    text-align: center;
    width: 100%;
}

.svg-lux-subheading {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: #ff3ca6;
    margin-bottom: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.92;
    text-shadow: 0 2px 18px #ff3ca6aa;
    text-align: center;
    width: 100%;
}

.svg-lux-text {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.18rem;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 720px;
    text-shadow: 0 2px 12px #000a;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.svg-lux-text strong,
.svg-lux-text b {
    color: #ffd700;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.svg-lux-icons-row {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    /* Center icons horizontally */
    align-items: center;
    gap: 3.5rem;
    margin-top: 1.5rem;
    margin-bottom: 2vw;
    padding-left: 0.2rem;
    text-align: center;
}

.svg-lux-icon {
    width: 72px;
    height: 72px;
    border-radius: 2.2rem;
    box-shadow: 0 0 0 8px #ff3ca61a;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
}

.svg-lux-icon:hover {
    box-shadow: 0 0 32px #ffd700, 0 0 32px #ff3ca6;
    transform: scale(1.11) rotate(-3deg);
}

@media (max-width: 900px) {
    .svg-lux-inner {
        padding: 2rem 1.2rem 0 1.2rem;
    }

    .svg-lux-heading {
        font-size: 2.1rem;
    }

    .svg-lux-icons-row {
        gap: 1.5rem;
    }

    .svg-lux-icon {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 600px) {
    .svg-lux-text {
        font-family: 'Montserrat', Arial, sans-serif;
        font-size: 1em;
    }
}


/* ===== ROYAL FAQ STYLES ===== */
.royal-faq-section {
    font-family: 'Cormorant Garamond', 'Times New Roman', serif;
    background: linear-gradient(210deg, #756c6c87 0%, #465b6b 100%)
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.royal-faq-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.royal-faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.royal-faq-main-title {
    font-size: 3.2rem;
    color: #873564;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(139, 69, 19, 0.1);
}

.royal-faq-subtitle {
    font-size: 1.3rem;
    color: #a67c52;
    font-style: italic;
    margin-top: 10px;
}

.royal-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.divider-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    width: 150px;
    margin: 0 15px;
}

.crown-icon {
    font-size: 24px;
    color: #d4af37;
    transform: rotate(15deg);
    animation: crownFloat 3s ease-in-out infinite;
}

.royal-faq-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.royal-faq-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e8e1d5;
    transition: all 0.4s ease;
    position: relative;
}

.royal-faq-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, #8B0000, #B22222);
    transition: height 0.4s ease;
}

.royal-faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.royal-faq-card:hover:before {
    height: 100%;
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.faq-question h3 {
    font-size: 1.4rem;
    color: #ff5500;
    margin: 0;
    font-weight: 700;
    flex: 1;
}

.royal-toggle {
    width: 30px;
    height: 30px;
    background: #65959340;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2d1e0c6e;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
    background: #405fd417;
}

.faq-answer div {
    padding: 0 30px;
}

.faq-answer p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #000;
    margin-bottom: 25px;
}

/* Active state */
.royal-faq-card.active .royal-toggle {
    transform: rotate(45deg);
    background: #d4af37;
    color: white;
}

.royal-faq-card.active .faq-answer {
    max-height: 500px;
    padding: 0 0 25px 0;
    border-top: 1px solid #7f2323;
}

/* Animations */
@keyframes crownFloat {

    0%,
    100% {
        transform: translateY(0) rotate(15deg);
    }

    50% {
        transform: translateY(-8px) rotate(15deg);
    }
}

/* Schema.org microdata is already included in HTML */

/* Responsive */
@media (max-width: 768px) {
    .royal-faq-main-title {
        font-size: 2.5rem;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 1.2rem;
    }

    .faq-answer div {
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .royal-faq-main-title {
        font-size: 2rem;
    }

    .divider-line {
        width: 80px;
    }
}


/* Ultra-Luxury Royal Footer Styles */
.royal-footer {
    position: relative;
    background: linear-gradient(to bottom, #0A0A0A, #1a1a2e);
    color: #000;
    padding: 80px 0 0;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
}

.royal-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.05) 0%, transparent 25%),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M30,50 Q50,30 70,50 Q50,70 30,50 Z" fill="none" stroke="%23D4AF37" stroke-width="0.3" opacity="0.05"/></svg>');
    background-size: cover, cover, 150px 150px;
    pointer-events: none;
}

.royal-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.royal-footer-crown {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
}

.royal-footer-crown svg {
    width: 300px;
    height: 40px;
    margin: 0 auto;
}

.royal-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.royal-footer-column {
    padding: 20px;
}

.royal-footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5f5f5;
}

.royal-footer-logo span {
    color: #D4AF37;
    margin: 0 5px;
}

.royal-footer-logo-icon {
    color: #D4AF37;
    font-size: 1.2rem;
    margin: 0 10px;
}

.royal-footer-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    text-align: center;
}

.royal-footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.royal-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    transition: all 0.3s;
}

.royal-social-icon:hover {
    background: rgba(212, 175, 55, 0.3);
    transform: translateY(-3px);
}

.royal-social-icon svg {
    width: 20px;
    height: 20px;
}

.royal-footer-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 10, 0.5);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin: 0 auto;
    width: max-content;
}

.royal-footer-badge svg {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

.royal-footer-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #D4AF37;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.royal-footer-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, #996515, #D4AF37);
}

.royal-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.royal-footer-links li {
    margin-bottom: 15px;
}

.royal-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.royal-footer-links a:hover {
    color: #D4AF37;
    transform: translateX(5px);
}

.royal-link-icon {
    color: #D4AF37;
    margin-right: 10px;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.royal-footer-links a:hover .royal-link-icon {
    transform: rotate(45deg);
}

.royal-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.royal-footer-contact li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.royal-contact-icon {
    margin-right: 15px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.royal-contact-icon svg {
    width: 100%;
    height: 100%;
}

.royal-footer-contact a {
    color: #D4AF37 !important;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 600;
}

.royal-footer-contact a:hover {
    color: #D4AF37 !important;
}

.royal-footer-newsletter {
    margin-top: 30px;
}

.royal-newsletter-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: #D4AF37;
    margin-bottom: 15px;
    font-weight: 600;
}

.royal-newsletter-form {
    display: flex;
    position: relative;
}

.royal-newsletter-form input {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 12px 20px;
    border-radius: 3px;
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.royal-newsletter-form input:focus {
    outline: none;
    border-color: #D4AF37;
    background: rgba(255, 255, 255, 0.15);
}

.royal-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.royal-newsletter-form button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.royal-newsletter-form button:hover {
    transform: translateY(-50%) scale(1.1);
}

.royal-newsletter-form button svg {
    width: 24px;
    height: 24px;
}

.royal-footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 30px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.royal-footer-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.royal-footer-legal {
    display: flex;
    align-items: center;
    gap: 15px;
}

.royal-footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.royal-footer-legal a:hover {
    color: #D4AF37;
}

.royal-legal-separator {
    color: rgba(212, 175, 55, 0.5);
    font-size: 0.85rem;
}

.royal-footer-payment {
    display: flex;
    align-items: center;
    gap: 15px;
}

.royal-payment-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 4px;
    transition: all 0.3s;
}

.royal-payment-icon:hover {
    background: rgba(212, 175, 55, 0.3);
    transform: translateY(-3px);
}

.royal-payment-icon svg {
    width: 20px;
    height: 20px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .royal-footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 992px) {
    .royal-footer {
        padding: 60px 0 0;
    }

    .royal-footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .royal-footer-legal {
        order: 2;
    }

    .royal-footer-payment {
        order: 3;
    }
}

@media (max-width: 768px) {
    .royal-footer-container {
        padding: 0 20px;
    }

    .royal-footer-heading {
        font-size: 1.3rem;
        margin-bottom: 20px;
        padding-bottom: 10px;
    }

    .royal-footer-logo {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .royal-footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .royal-footer-column {
        padding: 0;
    }

    .royal-footer-heading {
        font-size: 1.2rem;
    }

    .royal-newsletter-title {
        font-size: 1.1rem;
    }

    .royal-footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}


.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    animation: none;
}

.whatsapp-float i {
    margin-top: 5px;
    animation: bounce 1s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    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 bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

/* Add a tooltip */
.whatsapp-float::before {
    content: "Chat with us";
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-float:hover::before {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

/* Screen reader only class */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* Button styling */
.scroll-to-top {
    position: fixed;
    left: 30px;
    bottom: -60px;
    /* Start hidden below viewport */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
    opacity: 0;
    z-index: 1000;
}

/* Arrow icon */
.scroll-to-top::before {
    content: "↑";
    font-size: 24px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

/* Show button when active */
.scroll-to-top.active {
    bottom: 68px;
    opacity: 1;
}

/* Hover effects */
.scroll-to-top:hover {
    background: linear-gradient(135deg, #a777e3, #6e8efb);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

.scroll-to-top:hover::before {
    transform: translateY(-3px);
}

/* Active/pressed effect */
.scroll-to-top:active {
    transform: scale(0.95);
}

/* Pulse animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(110, 142, 251, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(110, 142, 251, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(110, 142, 251, 0);
    }
}

.scroll-to-top.pulse {
    animation: pulse 1.5s infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .scroll-to-top {
        left: 15px;
        width: 45px;
        height: 45px;
    }
}
 /* Smooth zoom animation */
  @keyframes smoothZoom {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05); /* Slight zoom in */
    }
    100% {
      transform: scale(1);
    }
  }

  /* Video container with smooth animation and responsiveness */
  .video-container {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden; /* Hide overflow to ensure video fits nicely */
  }

  .video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: smoothZoom 30s infinite ease-in-out; /* Smooth zoom effect */
    display: block;
  }
  /* Tags Section */
.tags-section {
    margin: 60px 0;
    text-align: center;
}

.tags-section h2 {
    font-size: 2.5em;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tags-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    padding: 0 10px;
}

.tag {
    display: inline-block;
    padding: 12px 20px;
    background: linear-gradient(45deg, #5287a1, #285047); /* Warm gradient matching booking section */
    color: white;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 500;
    border-radius: 25px; /* Rounded like a button */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    text-align: center;
    animation: slideUp 0.7s ease-in-out forwards; /* Entrance animation */
}

.tag:hover {
    transform: translateY(-5px); /* Lift on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #3c4678, #7b8bc3); /* Reverse gradient on hover */
}

/* Animations (already in your CSS, included here for reference) */
@keyframes slideUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .tags-section h2 {
        font-size: 2em;
    }

    .tag {
        font-size: 1em;
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    .tags-grid {
        grid-template-columns: 1fr; /* Single column on small screens */
    }
}

.nav-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr); /* 5 columns for desktop */
            gap: 15px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            box-sizing: border-box;
        }
        .nav-item {
            background: linear-gradient(45deg, #ff6b6b, #ff8e53);
            border-radius: 10px;
            text-align: center;
            padding: 20px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }
        .nav-item a {
            text-decoration: none;
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            display: block;
            text-transform: capitalize;
        }
        .nav-item:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
            background: linear-gradient(45deg, #ff3e3e, #ff7043);
        }
        .nav-item a:hover {
            color: #ffe600;
        }
        /* Tablet View (max-width: 768px) */
        @media (max-width: 768px) {
            .nav-grid {
                grid-template-columns: repeat(3, 1fr); /* 3 columns for tablet */
            }
            .nav-item {
                padding: 15px;
            }
            .nav-item a {
                font-size: 14px;
            }
        }
        /* Mobile View (max-width: 480px) */
        @media (max-width: 480px) {
            .nav-grid {
                grid-template-columns: repeat(2, 1fr); /* 2 columns for mobile */
            }
            .nav-item {
                padding: 12px;
            }
            .nav-item a {
                font-size: 13px;
            }
        }