/* Google Fonts for Luxury Feel */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Poppins:wght@300;400;500;600&display=swap');

:root {
    --brand-pink: #f06292; /* Adjusted for better premium contrast */
    --brand-pink-dark: #d81b60;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1 {
    font-family: 'Playfair Display', serif; /* Serif fonts look more luxurious for spas */
}

/* ===========================================
   NAVBAR SECTION
   =========================================== */

/* Push body down so the fixed navbar doesn't cover the hero section */
body {
    padding-top: 86px; 
}

/* Navbar specific styling */
.navbar {
    transition: all 0.3s ease;
}

/* Link Styling */
.navbar-nav .nav-link {
    color: #4a5568 !important; /* Soft dark grey */
    font-size: 0.9rem;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

/* Elegant Underline Hover Effect */
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(90deg, var(--brand-pink), var(--brand-magenta));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--brand-magenta) !important;
}

/* Clean mobile menu spacing */
/* Clean mobile menu spacing & Centering */
@media (max-width: 991px) {
    .navbar-nav {
        padding-top: 15px;
        padding-bottom: 15px;
        text-align: center; /* 👈 Yaha se links center me aayenge */
    }
    
    .navbar-nav .nav-link::after {
        display: none; 
    }

    /* 👈 Button ko bhi center karne ke liye ye add karein */
    .navbar-collapse .d-flex {
        justify-content: center; 
        padding-bottom: 15px;
    }
}

/* ================= HERO SECTION ================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
}

/* Gradient Overlay to fix text readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.z-index-2 {
    z-index: 2;
}

/* Typography & Colors */
.brand-pink {
    color: var(--brand-pink);
}

.tracking-wide {
    letter-spacing: 2px;
}

.divider {
    height: 3px;
    width: 60px;
    background-color: var(--brand-pink);
}

/* Custom Pink Button */
.btn-pink {
    background-color: var(--brand-pink);
    color: #fff;
    font-weight: 500;
    border: none;
    transition: all 0.3s ease;
}

.btn-pink:hover {
    background-color: var(--brand-pink-dark);
    color: #fff;
    transform: translateY(-3px);
}

/* ================= FLOATING GALLERY (Right Side) ================= */
.circle-img {
    border-radius: 50%;
    background-position: center;
    background-size: cover;
    border: 4px solid rgba(255, 255, 255, 0.8);
    transition: transform 0.4s ease;
}

.circle-img:hover {
    transform: scale(1.05);
}

.circle-img.large {
    width: 350px;
    height: 350px;
}

.circle-img.small {
    width: 150px;
    height: 150px;
}

/* Negative margin to overlap images slightly for a modern look */
.mt-n5 {
    margin-top: -3rem;
}

/* ================= SLIDER NAVIGATION ARROWS ================= */
.hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--brand-pink);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s ease;
}

.hero-nav-btn:hover {
    background-color: var(--brand-pink-dark);
    width: 60px; /* Expands slightly on hover */
}

.prev-btn {
    left: 0;
    border-radius: 0 25px 25px 0;
}

.next-btn {
    right: 0;
    border-radius: 25px 0 0 25px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .hero-overlay {
        background: rgba(0, 0, 0, 0.6); /* Uniform dark overlay for mobile */
    }
    .hero-nav-btn {
        display: none; /* Hide arrows on mobile for a cleaner look */
    }
}

/* ===========================================
    SERVICES SECTION
   =========================================== */

:root {
    --brand-magenta: #f624d6; /* Exact match from screenshot */
    --brand-magenta-dark: #d81cb9;
    --heading-dark: #1a202c;
}

/* Heading Styling */
.heading-line {
    width: 40px;
    height: 2px;
    background-color: var(--heading-dark);
    display: inline-block;
}

/* Card Styling */
.service-card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08) !important;
}

/* Image Wrapper (Fixing broken image header from original UI) */
.service-img-wrapper {
    height: 180px;
    overflow: hidden;
    background-color: #f8f9fa;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.08);
}

/* Typography */
.service-title {
    color: var(--brand-magenta);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.service-price {
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Button Styling */
.btn-magenta {
    background-color: var(--brand-magenta);
    color: #ffffff;
    font-weight: 500;
    border-radius: 6px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.btn-magenta:hover {
    background-color: var(--brand-magenta-dark);
    color: #ffffff;
    transform: translateY(-2px);
}

/* ===========================================
    Commitment Section
   =========================================== */

.about-section {
    background-color: #ffffff;
}

/* Image Wrapper Styling */
.about-img-wrapper {
    position: relative;
    height: 450px;
}

.about-img-wrapper img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-img-wrapper:hover img {
    transform: scale(1.05); /* Slight zoom effect on hover */
}

/* Typography Enhancements */
.about-section .text-danger {
    color: #e53935 !important;
    letter-spacing: 1px;
}

.about-section .fa-leaf {
    color: #8bc34a !important; /* Fresh green leaf color */
}

.lh-lg {
    line-height: 1.8 !important;
}

/* Custom Bullet Points */
.custom-bullet-list li {
    position: relative;
    padding-left: 25px;
    color: #1a202c;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 500;
}

.custom-bullet-list .bullet-icon {
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: #1a202c; /* Dark dot matching the screenshot */
    border-radius: 50%;
}

/* ===========================================
    Features Section
   =========================================== */

.features-section .heading-line {
    width: 60px;
    height: 3px;
    background-color: var(--brand-magenta); /* Purana magenta color carry forward kar rahe hain */
}

/* Feature Card Styling */
.feature-card {
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
    border-bottom: 4px solid var(--brand-magenta);
}

/* Icon Wrapper Styling */
.icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--brand-magenta);
    transition: all 0.3s ease;
}

.feature-card:hover .icon-wrapper {
    background-color: var(--brand-magenta);
    color: #ffffff;
    transform: rotate(10deg) scale(1.1);
}

/* ================================
    WHY CHOOSE US SECTION
   ================================ */

/* Light Background for Icons */
.bg-light-magenta {
    background-color: rgba(246, 36, 214, 0.1); 
}

/* Icon Circle Styling */
.icon-circle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

/* Hover Effect: Icon flips and turns solid magenta */
.icon-box:hover .icon-circle {
    background-color: var(--brand-magenta);
    color: #ffffff !important;
    transform: rotateY(180deg);
    box-shadow: 0 10px 20px rgba(246, 36, 214, 0.3) !important;
}

.fs-7 {
    font-size: 0.9rem;
}

/* Image Zoom Effect on Hover */
.why-choose-image img {
    transition: transform 0.5s ease;
}

.why-choose-image:hover img {
    transform: scale(1.05);
}

/* Floating Badge Styling */
.floating-badge {
    position: absolute;
    bottom: 40px;
    left: -30px; /* Pulls it slightly out of the image frame on desktop */
    z-index: 2;
    min-width: 120px;
}

.border-magenta {
    border-color: var(--brand-magenta) !important;
}

/* Mobile Responsive Fix for Badge */
@media (max-width: 991px) {
    .floating-badge {
        left: 20px; /* Pushes it inside the frame for mobile screens */
    }
    .why-choose-image img {
        min-height: 400px !important;
    }
}

/* ===========================================
   SIGNATURE SPA JOURNEYS (Beautiful & Compact)
   =========================================== */

/* Card Container */
.signature-card {
    border-radius: 20px; /* Soft, modern rounded corners */
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy smooth hover */
    background: #ffffff;
}

.signature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

/* Reduced Image Wrapper */
.signature-img-wrapper {
    height: 200px; /* Much smaller height for a compact card */
    position: relative;
    overflow: hidden;
}

.signature-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.signature-card:hover .signature-img-wrapper img {
    transform: scale(1.1); /* Elegant zoom effect */
}

/* Floating Badges inside Image */
.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

/* Card Body Styling */
.card-accent-line {
    width: 40px;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-pink), var(--brand-magenta));
    border-radius: 5px;
    margin: 15px 0;
}

/* Truncate text so cards stay equal height even if text is long */
.line-clamp-3 {
    display: -webkit-box;
    /* -webkit-line-clamp: 3; */
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.6;
}

/* Custom Interactive Link */
.explore-link {
    color: var(--brand-magenta);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px; /* Space between text and icon */
    transition: all 0.3s ease;
}

.explore-link i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

/* Arrow slides to the right on hover */
.explore-link:hover {
    color: var(--brand-pink-dark);
}

.explore-link:hover i {
    transform: translateX(6px); 
}

/* ===========================================
   BOOKING FORM SECTION
   =========================================== */

/* Custom Input Styling */
.custom-input {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    height: 60px !important; /* Slightly taller inputs for a spacious feel */
    font-size: 1rem;
    color: #4a5568;
    background-color: #f8fafc;
    transition: all 0.3s ease;
}

/* Floating label adjustments */
.form-floating > label {
    padding-left: 1.25rem;
    color: #a0aec0;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
    color: var(--brand-magenta);
    transform: scale(0.85) translateY(-0.75rem) translateX(0.15rem);
}

/* Input Focus States */
.custom-input:focus {
    border-color: var(--brand-magenta);
    box-shadow: 0 0 0 4px rgba(246, 36, 214, 0.15); /* Soft pink glowing ring */
    background-color: #ffffff;
    outline: none;
}

/* Select Dropdown specific fix for floating label */
.form-select.custom-input {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}

/* Make sure the left image doesn't break the rounded corners of the card */
.booking-img-wrapper {
    position: relative;
}

/* Button Hover Enhancement for this specific section */
.booking-section .btn-magenta {
    transition: all 0.4s ease;
}

.booking-section .btn-magenta:hover {
    box-shadow: 0 10px 20px rgba(246, 36, 214, 0.3) !important;
}

/* ===========================================
   FOOTER SECTION (Center & Block Level)
   =========================================== */

.footer-section {
    background-color: #1a1a1a; /* Deep, rich dark background for luxury feel */
    color: #ffffff;
    position: relative;
}

/* Typography */
.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    letter-spacing: 1px;
}

/* Accent Divider */
.footer-divider {
    width: 60px;
    height: 3px;
    background-color: var(--brand-pink);
    margin: 0 auto;
}

/* Contact Info Styling */
.footer-contact-info p {
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}

.footer-icon {
    color: var(--brand-magenta);
}

/* Social Media Buttons */
.footer-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-btn {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
    background-color: var(--brand-magenta);
    color: #ffffff;
    transform: translateY(-5px);
    border-color: var(--brand-magenta);
    box-shadow: 0 10px 20px rgba(246, 36, 214, 0.3);
}

/* Bottom Border / Copyright */
.footer-bottom {
    max-width: 600px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

/* ===========================================
   FLOATING CONTACT BUTTONS (Right Side)
   =========================================== */

/* Container ko right aur bottom mein fix karna */
.floating-contact-container {
    position: fixed;
    right: 25px;       /* Screen ke right side se gap */
    bottom: 30px;      /* Screen ke bottom se gap */
    display: flex;
    flex-direction: column; /* Buttons ko upar-niche (vertically) stack karne ke liye */
    gap: 15px;         /* Dono buttons ke beech ka space */
    z-index: 1000;     /* Ye ensure karega ki buttons hamesha sabse upar dikhein */
}

/* Common Button Styling */
.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy hover effect */
}

/* Hover par thoda bada hona */
.floating-btn:hover {
    transform: scale(1.15) translateY(-5px); 
    color: #ffffff;
}

/* Call Button Styling (Aapke Theme ke color me) */
.call-btn {
    background: linear-gradient(135deg, var(--brand-pink), var(--brand-magenta));
}

.call-btn:hover {
    box-shadow: 0 10px 20px rgba(246, 36, 214, 0.4) !important;
}

/* WhatsApp Button Styling (Official WhatsApp Green) */
.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.whatsapp-btn:hover {
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4) !important;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .floating-contact-container {
        right: 15px;
        bottom: 20px;
        gap: 10px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
}

/* ===========================================
   ABOUT US PAGE SPECIFIC STYLES
   =========================================== */

/* Sticky Right Column */
.sticky-sidebar {
    position: sticky;
    top: 120px; /* Stays right below the fixed navbar */
    transition: all 0.3s ease;
}

/* Feature Point Styling */
.feature-point {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.feature-icon-box {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: rgba(246, 36, 214, 0.08); /* Soft Magenta background */
    color: var(--brand-magenta, #f624d6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(246, 36, 214, 0.1);
}

/* Custom Elegant List */
.custom-spa-list {
    list-style: none;
    padding-left: 0;
}

.custom-spa-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #2d3748;
}

.custom-spa-list li::before {
    content: '\f00c'; /* FontAwesome Checkmark */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--brand-magenta, #f624d6);
    font-size: 1rem;
}

/* Improved Right Side Box */
.about-feature-box {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important;
}

.about-feature-overlay {
    background: linear-gradient(135deg, #a66133, #8a4e26); /* Richer copper gradient */
    position: relative;
}

.overlay-icon-wrapper {
    background-color: #a66133;
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: -55px; 
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* ===========================================
   Services Page
   =========================================== */

/* Image Hover Zoom Utility */
.image-hover-zoom img {
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-hover-zoom:hover img {
    transform: scale(1.05);
}

/* ===========================================
   BLOG PAGE STYLES
   =========================================== */

/* Blog Card Container */
.blog-card {
    background-color: #ffffff;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
}

/* Image Wrapper and Zoom */
.blog-img-wrapper {
    overflow: hidden;
}

.blog-img-wrapper img {
    transition: transform 0.8s ease;
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.08);
}

/* Category Badge over image */
.blog-category-badge {
    background-color: var(--brand-magenta, #f624d6);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 2;
}

/* Meta Data Colors */
.text-magenta {
    color: var(--brand-magenta, #f624d6);
}

/* Typography Hover */
.blog-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: var(--brand-magenta, #f624d6) !important;
}

/* Line Clamp utility (Ensure text stays uniform height) */
.line-clamp-2 {
    display: -webkit-box;
    /* -webkit-line-clamp: 2; */
    -webkit-box-orient: vertical;
    overflow: hidden;
}