/*
Theme Name: Fun Kolkata
Theme URI: https://funkolkata.com/
Author: Your Name
Author URI: https://funkolkata.com/
Description: A custom WordPress theme for Fun Kolkata.
Version: 1.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fun-kolkata
Tags: custom-background, custom-logo, custom-menu, featured-images

-------------------------------------------------------------------------
TABLE OF CONTENTS
-------------------------------------------------------------------------
1.  Global Variables (:root)
2.  Base & Reset
3.  Typography & Utilities
4.  Buttons, Badges & Forms
5.  Header & Navigation (Desktop & Mobile)
6.  Global Sections (Hero, About, Page Header)
7.  Components & Cards
    - Service Cards
    - Location Cards
    - Profile Cards
    - Staff Cards
    - Features & Marquees
8.  Page Specific Styles
    - Contact Page
    - Location Page
    - Single Service Page
    - Profile Page
    - Coming Soon & 404
9.  Footer
------------------------------------------------------------------------- */

/* ------------------------------------------------------------------------- *
 * 1. Global Variables & Theme Colors
 * ------------------------------------------------------------------------- */
:root {
    /* BACKGROUND COLORS */
    --primary-gold: #D4AF37;
    --secondary-red: #8B0000;
    --dark-black: #121212;
    --rich-black: #1a1a1a;
    --off-white: #f8f9fa;
    --pure-white: #ffffff;
    
    /* TEXT COLORS */
    --text-gold-accessible: #8a6603; 
    --text-gray-accessible: #545454; 
}

/* ------------------------------------------------------------------------- *
 * 2. Base & Reset
 * ------------------------------------------------------------------------- */
body {
    font: 400 18px/1.666666666667 'Inter', "Roboto", Helvetica, Arial, sans-serif;
    background-color: var(--pure-white);
    color: var(--rich-black);
    overflow-x: hidden; 
    width: 100%;
    font-display: swap;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
}

/* Common Card Image Aspect Ratios */
.profile-card img,
.location-card img,
.service-cat-card img,
.blog-card img {
    aspect-ratio: 2 / 3;
    object-fit: cover;
}

/* Prevent CLS (Cumulative Layout Shift) */
.status-badge,
.profile-rating,
.like-btn {
    min-height: 24px;
}

.owl-carousel,
.swiper,
.slider-wrapper {
    min-height: 300px;
}

@media (max-width: 768px) {
    .owl-carousel,
    .swiper {
        min-height: 220px;
    }
}

/* ------------------------------------------------------------------------- *
 * 3. Typography & Utilities
 * ------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--dark-black);
    font-family: "Poppins", "Inter", sans-serif;
}

h1 { font-size: clamp(28px, 4vw, 42px); }
h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 600; }
h3 { font-size: 20px; font-weight: 600; }

a {
    text-decoration: none;
    color: var(--rich-black);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-gold);
}

/* Color Utilities */
.text-gold, 
a.text-gold,
h1 span, h2 span, h3 span {
    color: var(--text-gold-accessible) !important;
}

a.text-gold:hover,
.text-gold.text-decoration-underline:hover {
    color: #5e4300 !important;
    text-decoration: underline !important;
}

.text-red { color: var(--secondary-red) !important; }
.text-white { color: #ffffff !important; }
.text-yellow { color: #F0E800; }
.text-muted, .lead, .small.text-muted {
    color: var(--text-gray-accessible) !important;
    opacity: 1 !important;
}
.lead { font-family: cursive !important; }

/* Background Utilities */
.bg-gold { background-color: var(--primary-gold) !important; color: var(--pure-white); }
.bg-red { background-color: var(--secondary-red) !important; color: var(--pure-white); }
.bg-dark-black { background-color: var(--dark-black) !important; color: var(--primary-gold); }
#bg-book { background-color: #005C3A !important; color: var(--pure-white); }

/* Spacing & SEO Utilities */
.section-padding { padding: 30px 0; }
.mt-about { margin-bottom: 25px; }
.seo a { color: #003605 !important; font-weight: 700; }
.seo a strong, b { color: #000000 !important; }

.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-gold);
    margin: 15px auto 0;
}

/* ------------------------------------------------------------------------- *
 * 4. Buttons, Badges & Forms
 * ------------------------------------------------------------------------- */
/* Gold Buttons (Must have Black Text) */
.btn-gold, 
.top-rated-badge, 
.badge {
    background-color: var(--primary-gold) !important;
    color: #000000 !important;
    font-weight: 700 !important;
    border: none;
    padding: 10px 22px;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: var(--secondary-red) !important;
    color: var(--pure-white) !important;
    transform: translateY(-2px);
}

/* Outline Buttons */
.btn-outline-dark {
    border-color: var(--dark-black);
    color: var(--dark-black);
}
.btn-outline-dark:hover {
    background-color: var(--dark-black);
    color: var(--primary-gold);
}

/* Floating Action Buttons */
.floating-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    color: white;
    font-size: 24px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}
.float-btn:hover { transform: scale(1.1); }
.btn-whatsapp { background-color: #25d366; }
.btn-call { background-color: var(--secondary-red); }
.btn-top { background-color: var(--primary-gold); display: none; }
.btn-toggle-contact { background-color: var(--dark-black); font-size: 18px; }

.contact-buttons-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: all 0.3s ease-in-out;
}
.contact-buttons-group.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    height: 0;
    overflow: hidden;
}

/* Forms */
.form-control {
    border: 1px solid #e0e0e0;
    padding: 12px 15px;
    border-radius: 8px;
    background-color: #f9f9f9;
}
.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-gold);
    background-color: #fff;
    border: 1px solid green;
}
.form-floating label { color: #888; }
.form-floating > .form-control:focus ~ label { color: var(--text-gold-accessible); }

/* ------------------------------------------------------------------------- *
 * 5. Header & Navigation
 * ------------------------------------------------------------------------- */
.navbar {
    background-color: var(--dark-black);
    padding: 15px 0;
}

.navbar-brand {
    color: var(--primary-gold) !important;
    font-weight: 700;
    font-size: 1.5rem;
}

/* Navbar Links */
.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 10px 15px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary-gold) !important;
}

/* Navbar Button */
.navbar .btn-gold { color: #000000 !important; }

/* Mobile Menu Toggler (Hamburger) */
.navbar-toggler {
    border: none;
    padding: 0;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1051;
    background: transparent;
    transition: all 0.3s ease-in-out;
}
.navbar-toggler:focus { box-shadow: none; }

.toggler-icon-bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-gold);
    border-radius: 2px;
    position: absolute;
    left: 0;
    transition: all 0.3s ease-in-out;
    transform-origin: center;
}

/* Initial Toggler Positions */
.toggler-icon-bar:nth-child(1) { top: 0; }
.toggler-icon-bar:nth-child(2) { top: 10px; opacity: 1; }
.toggler-icon-bar:nth-child(3) { top: 20px; }

/* Active Toggler State */
.navbar-toggler[aria-expanded="true"] .toggler-icon-bar:nth-child(1) {
    top: 10px;
    transform: rotate(45deg);
    background-color: var(--secondary-red);
}
.navbar-toggler[aria-expanded="true"] .toggler-icon-bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}
.navbar-toggler[aria-expanded="true"] .toggler-icon-bar:nth-child(3) {
    top: 10px;
    transform: rotate(-45deg);
    background-color: var(--secondary-red);
}

/* Full Screen Mobile Menu Overlay */
@media (max-width: 991px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(18, 18, 18, 0.98);
        z-index: 1040;
        padding-top: 80px;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        display: block !important;
        opacity: 0;
    }

    .navbar-collapse.show {
        transform: translateX(0);
        opacity: 1;
    }

    .navbar-nav {
        text-align: center;
        height: 80%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 25px;
    }

    .nav-link {
        font-size: 1.5rem;
        color: #fff !important;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .nav-link:hover { color: var(--primary-gold) !important; }

    /* Staggered Animation */
    .navbar-collapse.show .nav-link { opacity: 1; transform: translateY(0); }
    .navbar-collapse.show .nav-item:nth-child(1) .nav-link { transition-delay: 0.1s; }
    .navbar-collapse.show .nav-item:nth-child(2) .nav-link { transition-delay: 0.15s; }
    .navbar-collapse.show .nav-item:nth-child(3) .nav-link { transition-delay: 0.2s; }
    .navbar-collapse.show .nav-item:nth-child(4) .nav-link { transition-delay: 0.25s; }
    .navbar-collapse.show .nav-item:nth-child(5) .nav-link { transition-delay: 0.3s; }
    .navbar-collapse.show .nav-item:nth-child(6) .nav-link { transition-delay: 0.35s; }
    .navbar-collapse.show .nav-item:nth-child(7) .nav-link { transition-delay: 0.4s; }
}

/* ------------------------------------------------------------------------- *
 * 6. Global Sections (Hero, About, Page Header)
 * ------------------------------------------------------------------------- */
/* Hero Slider */
#heroSlider .carousel-item {
    height: 90vh;
    min-height: 500px;
    position: relative;
    background-color: #000;
}

#heroSlider .carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

/* Gradient Overlay */
#heroSlider .carousel-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 40%, transparent 100%);
    pointer-events: none;
}

#heroSlider .carousel-caption {
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    text-align: left;
    padding: 0 5% 60px 5%;
    z-index: 10;
    transform: none;
}

#heroSlider span {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1.1;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    max-width: 800px;
}

#heroSlider p {
    font-size: 1.3rem;
    color: #e0e0e0;
    font-weight: 300;
    max-width: 600px;
    margin-bottom: 25px;
    border-left: 3px solid var(--secondary-red);
    padding-left: 15px;
}

#heroSlider .btn-gold {
    padding: 12px 35px;
    font-size: 1.1rem;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile Hero */
@media (max-width: 768px) {
    #heroSlider .carousel-item::after {
        height: 85%; 
        background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
    }
    #heroSlider .carousel-item { height: 70vh; }
    #heroSlider .carousel-caption { padding: 0 20px 70px 20px; }
    #heroSlider span { font-size: 2.2rem; }
    #heroSlider p {
        font-size: 1rem;
        display: block !important;
        max-width: 100%;
        margin: 22px 0px;
        line-height: 1.5;
    }
    #heroSlider .btn-gold { width: 100%; padding: 15px; }
}

/* Page Header & Breadcrumb */
.page-header {
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    position: relative;
    margin-top: 76px;
}

.page-title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.breadcrumb {
    justify-content: center;
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: #e0e0e0;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-item a:hover,
.breadcrumb-item.active {
    color: var(--primary-gold);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
    content: "\f105"; /* FontAwesome Right Arrow */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    padding: 0 15px;
}

/* About Content */
.about-image-wrapper {
    position: relative;
    padding: 20px;
}
.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 60%; height: 60%;
    border-top: 5px solid var(--primary-gold);
    border-left: 5px solid var(--primary-gold);
    z-index: 0;
}
.about-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 60%; height: 60%;
    border-bottom: 5px solid var(--primary-gold);
    border-right: 5px solid var(--primary-gold);
    z-index: 0;
}
.about-img {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    transition: transform 0.5s ease;
}
.about-image-wrapper:hover .about-img { transform: scale(1.02); }
.about-btn { margin: 30px 0px 5px; display: flex; gap: 5px; justify-content: space-around;}

/* ------------------------------------------------------------------------- *
 * 7. Components & Cards
 * ------------------------------------------------------------------------- */

/* A. Accordion */
.accordion-item { border: none; border-bottom: 1px solid #eee; }
.accordion-button {
    font-weight: 600;
    color: var(--dark-black) !important;
    background: transparent;
    padding: 15px 15px;
    box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
    color: var(--text-gold-accessible) !important;
    background-color: rgba(212, 175, 55, 0.1);
}
.accordion-button:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}
.accordion-body { padding: 15px 0; color: var(--text-gray-accessible); }

/* B. Service Category Card (Cinematic) */
.service-cat-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: #000;
}
.service-cat-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.2, 1);
    opacity: 0.9;
}
.cat-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 20%, rgba(0,0,0,0.6) 60%, rgba(0,0,0,0.95) 100%);
    transition: all 0.4s ease;
}
.cat-content {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 30px;
    z-index: 2;
    transform: translateY(0);
    transition: transform 0.4s ease;
}
.cat-icon {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
    display: inline-block;
    background: rgba(255,255,255,0.1);
    width: 60px; height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    backdrop-filter: blur(5px);
}
.cat-title {
    color: #fff;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: capitalize;
}
.cat-desc {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    display: block;
    max-width: 90%;
}
.cat-btn-wrap {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}
.btn-cat-explore {
    background: var(--primary-gold);
    color: #000;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.cat-count {
    position: absolute;
    top: 20px; right: 20px;
    color: rgba(255,255,255,0.3);
    font-size: 3rem;
    font-weight: 900;
    z-index: 1;
    font-family: serif;
}

/* Service Cat Card Hover & Mobile */
.service-cat-card:hover img { transform: scale(1.1); opacity: 0.6; }
.service-cat-card:hover .cat-overlay { background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 50%, #000 100%); }
.service-cat-card:hover .cat-content { transform: translateY(-10px); }
.service-cat-card:hover .cat-btn-wrap { max-height: 60px; opacity: 1; }

@media (max-width: 768px) {
    .service-cat-card { height: 350px; }
    .cat-btn-wrap { max-height: 60px; opacity: 1; }
    .cat-content { padding: 20px; }
    .cat-title { font-size: 1.5rem; }
}

/* C. Service Image Card (Simple) */
.service-image-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    cursor: pointer;
}
.service-image-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.service-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(18, 18, 18, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    opacity: 0;
    transition: all 0.4s ease;
}
.service-overlay .service-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}
.service-overlay h3 {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}
.service-overlay p {
    color: #e0e0e0;
    font-size: 0.9rem;
    line-height: 1.4;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.2s;
}
.service-image-card:hover img { transform: scale(1.15); }
.service-image-card:hover .service-overlay { opacity: 1; }
.service-image-card:hover .service-icon,
.service-image-card:hover h3,
.service-image-card:hover p { transform: translateY(0); }

@media (max-width: 768px) {
    .service-image-card { height: 200px; }
    .service-overlay .service-icon { font-size: 1.8rem; margin-bottom: 5px; }
    .service-overlay h3 { font-size: 1.1rem; margin-bottom: 5px; }
    .service-overlay p { display: none; }
}

/* D. Horizontal Staff Card */
.staff-card-horizontal {
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    background: var(--pure-white);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    display: flex;
}
.staff-card-horizontal:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: var(--primary-gold);
}
.staff-row { height: 100%; width: 100%; margin: 0; }
.staff-img-side {
    position: relative;
    padding: 0;
    height: 100%;
    min-height: 280px;
}
.staff-img-side img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top center;
}
.staff-body-side {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.staff-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-black);
    margin-bottom: 5px;
}
.staff-expert {
    color: var(--secondary-red);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.staff-bio {
    font-size: 0.85rem;
    color: #666;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 15px;
}
.staff-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.8rem;
    color: #555;
    margin-bottom: 20px;
}
.staff-info-item i {
    color: var(--primary-gold);
    width: 20px;
    text-align: center;
}
.staff-actions { display: flex; gap: 10px; margin-top: auto; }
.btn-staff-contact {
    background-color: var(--secondary-red);
    color: white;
    font-size: 0.85rem;
    flex: 1;
    border-radius: 5px;
    padding: 8px 0;
}
.btn-staff-contact:hover { background-color: var(--dark-black); color: var(--primary-gold); }
.btn-staff-view {
    border: 1px solid var(--dark-black);
    color: var(--dark-black);
    font-size: 0.85rem;
    flex: 1;
    border-radius: 5px;
    padding: 8px 0;
}
.btn-staff-view:hover {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    color: white;
}
.card-like-btn {
    position: absolute;
    top: 10px; left: 10px;
    width: 30px; height: 30px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-red);
    border: none;
    cursor: pointer;
    z-index: 2;
    transition: transform 0.2s;
}
.card-like-btn:hover { transform: scale(1.1); }

@media (max-width: 576px) {
    .staff-img-side { min-height: 200px; }
    .staff-body-side { padding: 15px; }
    .staff-name { font-size: 1.1rem; }
    .staff-actions { flex-direction: column; gap: 8px; }
}

/* 1. Toggle Button Container */
.media-toggle-group {
    background: #f1f1f1;
    border-radius: 50px;
    padding: 5px;
    display: inline-flex;
    gap: 5px;
    margin-bottom: 20px; /* Space above the slider */
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.05);
}

/* 2. Toggle Buttons */
.btn-media-toggle {
    border: none;
    background: transparent;
    color: #666;
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-media-toggle:hover {
    color: var(--dark-black);
}

/* Active State (Gold) */
.btn-media-toggle.active {
    background: var(--primary-gold);
    color: #000;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

/* 3. Video Container (Hidden by default) */
#videoContainer {
    width: 100%;
    height: 550px; /* Matches your Swiper height */
    border-radius: 15px;
    overflow: hidden;
    background: #000;
    position: relative;
    display: none; /* Hidden initially */
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

#profileVideo {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures video fills the box like photos */
}

/* Mobile Adjustments */
@media (max-width: 576px) {
    #videoContainer { height: 480px; } /* Match mobile swiper height */
}


     
.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%; /* Adjust as needed */
    background: #000;
}

/* Ensure video fits container */
.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

/* Share Button Style */
.video-share-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent black */
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 14px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.video-share-btn:hover {
    background-color: #e60023; /* Or your theme color */
    border-color: #e60023;
}

/* Container Relative for positioning */
.video-wrapper {
    position: relative;
    width: 100%;
    background: #000;
}
.video-wrapper video {
    width: 100%;
    display: block;
}

/* Wrapper to hold button + menu */
.share-dropdown-wrap {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 20;
}

/* Main Share Button */
.video-share-btn {
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}
.video-share-btn:hover {
    background-color: #fff;
    color: #000;
}

/* Dropdown Menu (Hidden by default) */
.share-menu-content {
    display: none; /* Hidden */
    position: absolute;
   top: 54px;
    right: 0;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    border-radius: 8px;
    overflow: hidden;
    padding: 5px 0;
    animation: fadeIn 0.2s ease-in-out;
}

/* Show class for JS toggle */
.share-menu-content.show {
    display: block;
}

/* Menu Items */
.share-item {
    color: #333;
    padding: 10px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    transition: background 0.2s;
    border-bottom: 1px solid #f1f1f1;
}
.share-item:last-child { border-bottom: none; }
.share-item:hover { background-color: #f8f9fa; }

/* Icon Colors */
.share-item.facebook i { color: #1877f2; }
.share-item.whatsapp i { color: #25d366; }
.share-item.twitter i { color: #1da1f2; }
.share-item i { width: 20px; text-align: center; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}



/* E. Top Rated Vertical Card */
.top-rated-card {
    background: var(--pure-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
    height: 100%;
    position: relative;
}
.top-rated-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}
.top-rated-img-wrapper {
    position: relative;
    height: 320px;
    overflow: hidden;
}
.top-rated-img-wrapper img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}
.top-rated-card:hover .top-rated-img-wrapper img { transform: scale(1.05); }
.top-rated-badge {
    position: absolute;
    top: 10px; left: 10px;
    background: var(--primary-gold);
    color: white;
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}
.top-rated-info { padding: 15px; text-align: center; }
.top-rated-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--rich-black);
}
.top-rated-rating {
    color: var(--secondary-red);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}
.btn-top-view {
    font-size: 0.8rem;
    padding: 5px 15px;
    border: 1px solid var(--dark-black);
    color: var(--dark-black);
    border-radius: 20px;
    transition: all 0.3s;
    background: transparent;
}
.btn-top-view:hover { background: var(--dark-black); color: var(--primary-gold); }

/* Top Rated Carousel Controls */
.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: var(--dark-black);
    border-radius: 50%;
    background-size: 60%;
}
.carousel-control-prev, .carousel-control-next { width: 5%; }

@media (max-width: 576px) {
    .top-rated-img-wrapper { height: 200px; }
    .top-rated-name { font-size: 0.9rem; }
    .top-rated-info { padding: 10px 5px; }
}

/* F. Filter Bars (Responsive) */
.filter-bar-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    justify-content: center;
    align-items: center;
}
.filter-pill-btn {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    padding: 10px 24px;
    color: var(--rich-black);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    white-space: nowrap;
}
.filter-pill-btn:hover, 
.filter-pill-btn.active, 
.filter-pill-btn[aria-expanded="true"] {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.15);
    background: #fff;
}
.filter-pill-btn.dropdown-toggle::after { margin-left: 8px; vertical-align: middle; }

/* Search Pill */
.search-pill-group {
    position: relative;
    max-width: 300px;
    width: 100%;
}
.search-pill-input {
    width: 100%;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    padding: 10px 45px 10px 20px;
    outline: none;
    transition: all 0.3s ease;
    color: var(--rich-black);
}
.search-pill-input:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}
.search-pill-icon {
    position: absolute;
    right: 20px; top: 50%;
    transform: translateY(-50%);
    color: #888;
    pointer-events: none;
}

@media (max-width: 768px) {
    .filter-bar-container { gap: 20px; justify-content: space-between; }
    .filter-pill-btn, .dropdown { flex: 1 1 45%; width: auto; }
    .dropdown .filter-pill-btn { width: 100%; justify-content: space-between; }
    .search-pill-group { flex: 1 1 100%; max-width: 100%; order: 3; }
}

/* G. Marquees (Location & Profile) */
.location-marquee-section,
.profile-marquee-section {
    background-color: var(--dark-black);
    overflow: hidden;
}
.location-marquee-section { padding: 80px 0; }
.profile-marquee-section { padding: 60px 0; border-top: 1px solid rgba(255,255,255,0.05); }

.marquee-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    width: 100%;
}
.marquee-row {
    display: flex;
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.marquee-content {
    display: flex;
    gap: 15px;
    white-space: nowrap;
    min-width: 100%;
}
.marquee-row:hover .marquee-content { animation-play-state: paused; cursor: pointer; }

/* Marquee Animation */
.scroll-left { animation: scrollLeft 30s linear infinite; }
.scroll-right { animation: scrollRight 30s linear infinite; }

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes scrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Location Tags */
.loc-tag {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: #ccc;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    user-select: none;
}
.loc-tag:hover {
    background: var(--primary-gold);
    color: var(--dark-black);
    border-color: var(--primary-gold);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Profile Image Tags */
.profile-img-tag {
    display: inline-block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
}
.profile-img-tag img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.profile-img-tag:hover {
    transform: scale(1.1);
    border-color: var(--primary-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    z-index: 2;
}
.profile-img-tag:hover img { transform: scale(1.1); }

@media (max-width: 768px) {
    .marquee-content { gap: 10px; }
    .loc-tag { padding: 8px 18px; font-size: 0.85rem; }
    .scroll-left, .scroll-right { animation-duration: 25s; }
    .profile-img-tag { width: 70px; height: 70px; }
}

/* ------------------------------------------------------------------------- *
 * 8. Page Specific Styles
 * ------------------------------------------------------------------------- */

/* --- A. CONTACT PAGE --- */
.contact-hero {
    background: linear-gradient(rgba(18, 18, 18, 0.85), rgba(18, 18, 18, 0.9)), url('https://placehold.co/1920x600/121212/333333?text=Contact+LoveMethoda');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    margin-top: 76px;
    border-bottom: 4px solid var(--primary-gold);
}
.contact-title {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.contact-info-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
    text-align: center;
}
.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    border-color: var(--primary-gold);
}
.contact-icon-wrapper {
    width: 70px; height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--text-gold-accessible);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}
.contact-info-card:hover .contact-icon-wrapper {
    background: var(--primary-gold);
    color: #000;
}
.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}
.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 5px;
    background: var(--primary-gold);
}

/* Custom Dark Map */
.custom-map-container, .map-wrapper {
    width: 100%;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    filter: grayscale(100%) invert(92%) contrast(83%);
    transition: filter 0.3s;
    border: 1px solid #ddd;
}
.custom-map-container:hover { filter: grayscale(0%); }
.custom-map-container iframe, .map-wrapper iframe { width: 100%; height: 100%; border: 0; }

@media (max-width: 768px) {
    .contact-title { font-size: 2.2rem; }
    .contact-form-wrapper { padding: 25px; }
    .custom-map-container, .map-wrapper { height: 300px; }
}

.cta-strip{background-color: #510505;padding: 34px;}

/* --- B. PROFILE PAGE --- */
.profile-hero {
    background: linear-gradient(to bottom, rgb(0 0 0 / 72%), rgb(18 18 18 / 49%)), url(https://funkolkata.com/wp-content/uploads/2025/12/New-Fun-Kolkata-Escort.webp);
    background-position: center;
    padding: 120px 0 80px;
    text-align: center;
    color: #fff;
    border-bottom: 3px solid var(--primary-gold);
}
.profile-title {
    font-size: 2.5rem;
    font-family: cursive;
    text-transform: capitalize!important;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    background: -webkit-linear-gradient(#fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 576px) {
    .profile-title {
         font-size: 1.5rem;
    }
   .profile-hero .mt-5 {margin-top: 0rem!important} 
   .breadcrumb-item + .breadcrumb-item::before {padding: 0 7px 0px 0px;}
}




/* --- B. LOCATION PAGE --- */
.location-hero {
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    text-align: center;
    color: #fff;
    border-bottom: 3px solid var(--primary-gold);
}
.location-title {
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    background: -webkit-linear-gradient(#fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.area-tag-container {
    display: flex; flex-wrap: wrap; gap: 10px;
    justify-content: center; margin-top: 30px;
}
.area-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #e0e0e0;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: default;
}
.area-tag:hover {
    background: var(--primary-gold);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}
.loc-feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    height: 100%;
    border: 1px solid #eee;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}
.loc-feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.loc-feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: var(--primary-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}
.loc-feature-card:hover::before { transform: scaleX(1); }

/* Location Search */
.loc-search-wrapper {
    position: relative;
    max-width: 600px;
    margin: -30px auto 50px;
    z-index: 10;
}
.loc-search-input {
    height: 60px;
    border-radius: 50px;
    padding-left: 30px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.loc-search-btn {
    position: absolute;
    right: 5px; top: 5px;
    height: 50px; width: 50px;
    border-radius: 50%;
    background: var(--primary-gold);
    border: none;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}
.loc-search-btn:hover { transform: scale(1.1); }

/* Location Card (Cinematic) */
.location-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 350px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}
.location-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.location-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.9) 100%);
    transition: background 0.4s ease;
}
.location-content {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 30px;
    z-index: 2;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}
.loc-name {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.loc-desc {
    color: #ddd;
    font-size: 0.9rem;
    margin-bottom: 15px;
    opacity: 0.8;
    display: block;
}
.loc-btn-wrapper {
    max-height: 0; overflow: hidden; opacity: 0;
    transition: all 0.5s ease;
}
.btn-loc-view {
    background: var(--primary-gold);
    color: #000;
    font-weight: 700;
    padding: 10px 25px;
    border-radius: 50px;
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.8rem;
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}
/* Location Card Hover */
.location-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transform: translateY(-5px);
}
.location-card:hover img { transform: scale(1.15); }
.location-card:hover .location-overlay { background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0.95) 100%); }
.location-card:hover .location-content { transform: translateY(0); }
.location-card:hover .loc-btn-wrapper { max-height: 60px; opacity: 1; margin-top: 15px; }

@media (max-width: 768px) {
    .location-title { font-size: 2.2rem; }
}

/* --- C. SINGLE SERVICE PAGE --- */
.single-service-hero {
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    color: #fff;
    margin-top: 76px;
    position: relative;
}
.service-sidebar-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: sticky;
    top: 100px;
    transition: all 0.3s ease;
}
.service-sidebar-card:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}
.price-tag-large { font-size: 2.5rem; font-weight: 700; color: var(--dark-black); }
.price-tag-large span { font-size: 1rem; color: #888; font-weight: 400; }
.benefit-item { display: flex; align-items: start; margin-bottom: 15px; }
.benefit-icon {
    min-width: 30px; height: 30px;
    background: rgba(212, 175, 55, 0.15);
    color: var(--text-gold-accessible);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-right: 15px; font-size: 0.9rem;
}
.process-step {
    border-left: 3px solid #eee;
    padding-left: 30px; padding-bottom: 30px;
    position: relative;
}
.process-step:last-child { border-left: none; }
.process-step::before {
    content: '';
    position: absolute;
    left: -11px; top: 0;
    width: 20px; height: 20px;
    background: var(--primary-gold);
    border-radius: 50%;
    border: 4px solid #fff;
}
.mobile-sticky-bar {
    position: fixed;
    bottom: 0; left: 0; width: 100%;
    background: #fff;
    padding: 15px 20px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
    align-items: center; justify-content: space-between;
}
@media (max-width: 991px) {
    .mobile-sticky-bar { display: flex; }
    .service-sidebar-card { display: none; }
}

/* --- D. PROFILE & LISTING PAGES --- */
/* Filter Bar */
.filter-bar {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50px;
    padding: 10px 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    margin-bottom: 40px;
}
/* Profile Card */
.profile-card {
    background: #fff;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    position: relative;
    height: 100%;
    display: flex; flex-direction: column;
}
.profile-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
}
.profile-img-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 125%; /* 4:5 Aspect Ratio */
}
.profile-img-wrapper img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.profile-card:hover .profile-img-wrapper img { transform: scale(1.08); }
.status-badge {
    position: absolute;
    top: 15px; left: 15px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
    z-index: 2;
    display: flex; align-items: center; gap: 6px;
}
.status-dot {
    width: 8px; height: 8px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 0 5px #25d366;
}
.like-btn {
    position: absolute;
    top: 15px; right: 15px;
    width: 35px; height: 35px;
    background: #fff;
    border-radius: 50%;
    border: none;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}
.like-btn i { color: #ccc; font-size: 1.1rem; transition: color 0.2s; }
.like-btn:hover { transform: scale(1.1); }
.like-btn.active i { color: #e91e63; font-weight: 900; }
.profile-body { padding: 20px; flex-grow: 1; }
.profile-name {
    font-size: 1.25rem; font-weight: 700; margin-bottom: 5px; color: var(--dark-black);
}
.profile-name:hover { color: var(--text-gold-accessible); }
.profile-meta {
    font-size: 0.85rem; color: #888; margin-bottom: 15px; display: flex; gap: 15px;
}
.profile-meta span i { margin-right: 4px; color: var(--text-gold-accessible); }
.profile-rating {
    color: #ffc107; font-size: 0.9rem; margin-bottom: 15px; display: flex; align-items: center; gap: 5px;
}
.rating-count { color: #999; font-size: 0.8rem; }
.profile-actions { padding: 0 20px 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

/* Pagination */
.pagination-gold .page-link {
    color: var(--dark-black);
    border: none;
    margin: 0 5px;
    border-radius: 50%;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 600;
}
.pagination-gold .page-link:hover { background-color: #eee; color: var(--primary-gold); }
.pagination-gold .page-item.active .page-link {
    background-color: var(--primary-gold);
    color: #000;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* --- Profile Page Specific Styles --- */
.profile-section { padding: 60px 0; }

/* Wrapper: This ensures nothing ever stick out of the container */
.profile-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    overflow: hidden; /* CRITICAL FIX: Cuts off any 3D overflow */
    padding: 10px; /* Gives breathing room for shadows */
}

/* Swiper Container */
.swiper-container {
    width: 100%;
    height: 550px; 
    padding-top: 20px;
    padding-bottom: 50px;
}

/* Swiper Slide */
.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 80% !important; /* Desktop default */
    height: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    overflow: hidden;
    position: relative;
    cursor: grab;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Tooltip */
.swiper-slide::after {
    content: 'Drag or swipe';
    position: absolute;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.6); color: #fff; padding: 10px 20px;
    border-radius: 30px; opacity: 0; transition: opacity 0.3s;
    pointer-events: none; font-weight: 500; white-space: nowrap;
}
.swiper-slide:hover::after { opacity: 1; }

/* Hurry Notification */
.hurry-notification {
    position: absolute;
    bottom: 67px;
    left: 40%; 
    transform: translateX(-50%);
    width: auto;
    max-width: 90%;
    background: rgb(0 0 0 / 67%);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px; 
    display: flex; align-items: center; gap: 12px;
    z-index: 20; pointer-events: none; white-space: nowrap; 
    backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.hurry-notification i { color: var(--primary-gold); font-size: 1.2rem; animation: pulse 2s infinite; }
.hurry-text { line-height: 1.2; font-size: 0.9rem; text-align: left; }
.hurry-text strong { display: block; color: #fff; font-size: 0.95rem; }

/* --- RESPONSIVE FIXES FOR 6+ IMAGES --- */
@media (max-width: 576px) {
    /* 1. Reduce Height slightly for mobile */
    .swiper-container { height: 480px; }

    /* 2. CRITICAL: Reduce Slide Width */
    /* Lowering to 75% gives 12.5% space on right side for the stack to exist */
    .swiper-slide { 
        width: 75% !important; 
    }
    
    /* 3. Adjust Notification Position */
    .hurry-notification {
        bottom: 50px;
        width: 85%;
        justify-content: center;
    }
}

/* Profile Content Details */
.rating-stars { color: #00870c; font-size: 0.9rem; }
.rates-summary { font-size: 0.95rem; color: var(--text-gray-accessible); }
.action-btn-group .btn {
    border-radius: 50px; font-weight: 600; padding: 10px 20px;
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-members { background: #5e35b1; color: #fff; border: none; }
.signup-banner {
    background: linear-gradient(45deg, #ff4081, #f50057);
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    display: block;
}
.stats-table { width: 100%; font-size: 0.95rem; }
.stats-table td { padding: 8px 0; vertical-align: middle; }
.stats-table .label { color: var(--text-gray-accessible); width: 40%; }
.stats-table .value { font-weight: 500; color: var(--rich-black); text-align: right; }
.stats-table .value a { color: var(--rich-black); text-decoration: underline; }

@media (max-width: 991px) {
    .swiper-container { height: 450px; }
    .swiper-slide { width: 90% !important; }
    .action-btn-group { display: flex; flex-wrap: wrap; gap: 10px; }
    .action-btn-group .btn { flex: 1 1 auto; justify-content: center; }
}
@media (max-width: 576px) {
    .profile-section { padding-top: 30px; }
    .hurry-notification {
        bottom: 50px; padding: 8px 15px; width: 90%;
        justify-content: center; margin-left: 0; left: 50%;
        transform: translateX(-50%);
    }
    .hurry-text { font-size: 0.8rem; }
    .profile-image-wrapper { padding: 0 10px; }
    .filter-bar { flex-direction: column; gap: 15px; align-items: stretch !important; }
}

/* --- E. COMING SOON & 404 --- */
.coming-soon-section {
    position: relative;
    min-height: 100vh;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.85)), url('https://placehold.co/1920x1080/121212/333333?text=Luxury+Spa+Background');
    background-size: cover; background-position: center;
    text-align: center; padding: 20px; color: #fff; overflow: hidden;
}
.coming-soon-content {
    position: relative; z-index: 2; max-width: 800px; padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px); border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.coming-soon-title {
    font-size: 4rem; font-weight: 800; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 10px;
    background: linear-gradient(to right, #D4AF37, #FDC830, #D4AF37);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    animation: shine 3s infinite linear;
}
.countdown-wrapper { display: flex; justify-content: center; gap: 20px; margin: 40px 0; flex-wrap: wrap; }
.countdown-box {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 15px 25px; border-radius: 10px; min-width: 100px;
}
.countdown-number { font-size: 2.5rem; font-weight: 700; color: #fff; display: block; line-height: 1; }
.countdown-label { font-size: 0.8rem; text-transform: uppercase; color: var(--primary-gold); letter-spacing: 1px; }
.notify-form { max-width: 500px; margin: 0 auto; display: flex; gap: 10px; }
.notify-input {
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    color: #fff; border-radius: 50px; padding: 15px 25px;
}
.notify-input::placeholder { color: rgba(255,255,255,0.5); }
.notify-input:focus {
    background: rgba(255,255,255,0.2); border-color: var(--primary-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3); color: #fff;
}
@keyframes shine {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* 404 Error Page */
.error-page-section {
    min-height: 80vh;
    display: flex; align-items: center;
    background: radial-gradient(circle at center, #f8f9fa 0%, #e9ecef 100%);
    position: relative; overflow: hidden; margin-top: 76px;
}
.error-code {
    font-size: 12rem; font-weight: 900; line-height: 1;
    background: linear-gradient(135deg, var(--primary-gold), #b3902a);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    position: relative; display: inline-block;
    animation: float 6s ease-in-out infinite;
}
.error-code::after {
    content: '404'; position: absolute; left: 0; top: 5px; width: 100%; height: 100%; z-index: -1;
    background: none; -webkit-text-fill-color: rgba(0,0,0,0.05);
    filter: blur(4px); animation: shadow 6s ease-in-out infinite;
}
.error-title { font-size: 2.5rem; font-weight: 700; margin-bottom: 20px; color: var(--dark-black); }
.error-text { font-size: 1.1rem; color: var(--text-gray-accessible); max-width: 500px; margin: 0 auto 40px; }
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}
@keyframes shadow {
    0% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(0.9); opacity: 0.1; }
    100% { transform: scale(1); opacity: 0.2; }
}

@media (max-width: 768px) {
    .coming-soon-title { font-size: 2.5rem; }
    .countdown-wrapper { gap: 10px; }
    .countdown-box { min-width: 70px; padding: 10px; }
    .countdown-number { font-size: 1.5rem; }
    .notify-form { display: flex; justify-content: center; align-content: space-around; flex-wrap: wrap; }
    .notify-form .btn { width: 100%; }
    .error-code { font-size: 8rem; }
    .error-title { font-size: 1.8rem; }
}

.text-lm{color: #9d9d9d;}
.review-name{font-weight: 500;}

    /* --- Love Button & Spark Animation --- */

/* 1. Base Button Style */
.card-like-btn {
    position: absolute;
    z-index: 10;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: white; 
    border-radius: 50%;
    width: 35px;
    height: 35px;
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: visible; /* CRITICAL: Allows sparks to fly outside */
}

.card-like-btn:active {
    transform: scale(0.9);
}

/* 2. Active State (Red Filled Heart) */
.card-like-btn.liked i {
    color: #ff3b3b !important;
    font-weight: 900 !important; /* Force Solid Icon */
    animation: heartPop 0.4s ease-in-out;
}

/* 3. Spark Particles */
.love-spark {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

/* 4. The Counter Box */
.like-display-box {
    color: #ff3b3b;
    font-size: 0.9rem;
    margin-left: 5px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* 5. Animations */
@keyframes heartPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.4); }
    100% { transform: scale(1); }
}

@keyframes spark-anim {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        /* Matches JS variable setting */
        transform: translate(var(--x), var(--y)) scale(0);
        opacity: 0;
    }
}

/* ------------------------------------------------------------------------- *
 * 9. Footer
 * ------------------------------------------------------------------------- */
.footer {
    background-color: var(--dark-black);
    color: #e0e0e0 !important;
    padding: 60px 0 30px;
    font-size: 15px;
}
.footer h3 { color: var(--primary-gold); margin-bottom: 20px; }
.footer a { color: #bdbdbd !important; display: block; margin-bottom: 10px; }
.footer a:hover { color: #FFD700 !important; }

.social-links a {
    display: inline-block;
    width: 40px; height: 40px;
    background: #333;
    color: var(--pure-white);
    text-align: center; line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}
.social-links a:hover { background: var(--primary-gold); }



.copyright {
    background: #000;
    padding: 20px 0;
    text-align: center;
    color: #e0e0e0 !important;
    font-size: 14px;
}
.copyright a {
    color: #efd06c !important;
    font-weight: 500;
}
.copyright a.text-gold {
    color: #FFD700 !important;
    text-decoration: none;
    text-underline-offset: 4px;
}
.copyright a.text-gold:hover {
    color: #ffffff !important;
    text-decoration: none !important;
}

/* ------------------------------------------------------------------------- *
 * 10. Third-Party Overrides (Glightbox etc.)
 * ------------------------------------------------------------------------- */
.gslide-desc { background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%) !important; }
.gslide-title { color: #fff !important; }
.gslide-caption { color: #ddd !important; }
.glightbox-clean .gclose, .glightbox-clean .gnext, .glightbox-clean .gprev { background-color: rgba(0,0,0,0.4); }

    /* --- PREMIUM WORDPRESS PAGINATION --- */

/* 1. The Container */
ul.page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 50px 0 20px; /* Top/Bottom Spacing */
    gap: 10px; /* Space between buttons */
}

ul.page-numbers li {
    margin: 0;
}

/* 2. Default Page Link (Numbers & Next/Prev) */
ul.page-numbers a,
ul.page-numbers span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%; /* Makes them circular */
    background: #fff;
    color: #333;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

/* 3. Hover State */
ul.page-numbers a:hover {
    background: #f9f9f9;
    color: #D4AF37; /* Gold Text */
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(212, 175, 55, 0.2); /* Gold Glow */
    border-color: #D4AF37;
}

/* 4. Active/Current Page */
ul.page-numbers span.current,
ul.page-numbers a.current {
    background: linear-gradient(135deg, #D4AF37 0%, #FDC830 100%); /* Gold Gradient */
    color: #000;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    font-weight: 700;
    transform: scale(1.1); /* Slightly larger */
    border: none;
}

/* 5. "Next" and "Prev" Buttons Specifics */
ul.page-numbers a.next,
ul.page-numbers a.prev {
    width: auto; /* Allow auto width for text */
    padding: 0 20px;
    border-radius: 50px; /* Pill shape */
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

ul.page-numbers a.next:hover,
ul.page-numbers a.prev:hover {
    background: #000;
    color: #D4AF37;
    border-color: #000;
}

/* Mobile Adjustment */
@media (max-width: 576px) {
    ul.page-numbers { gap: 5px; }
    ul.page-numbers a, ul.page-numbers span {
        width: 35px; height: 35px; font-size: 0.9rem;
    }
}