@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Poppins:wght@300;400;600&display=swap');

/* =========================================================
   ROOT VARIABLES
========================================================= */
:root {
    --bg-main: #ffffff;
    --bg-soft: #fff7ed;
    --orange-main: #ff8c1a;
    --orange-dark: #e67300;
    --gold-soft: #e6b65c;
    --gold-glow: #d4af37;
    --neon-green: #00FF7F;
    --space-dark: #0a0a0a;
    --text-dark: #2c2c2c;
    --text-muted: #000;
    --border-soft: #f0e6d8;
    --gold-primary: #c5a059;
    --gold-light: #e0c58e;
    --luxury-dark: #2d2a26;
    --soft-bg: #fffdfa;
    --text-muted: #4a4a4a;
    --glass-bg: rgba(255, 255, 255, 0.98);
    --gold-deep: #b88746;        /* High-visibility Bronze Gold */
    --gold-premium: #a67c00;     /* Static Burnished Gold */
    --luxury-charcoal: #1a1a1a;  /* Premium Black for text */
}

/* =========================================================
   SMOOTH SCROLL POLISH
========================================================= */
html {
    scroll-behavior: smooth;
}

/* =========================================================
   BASE
========================================================= */

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--bg-main);
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    margin: 0;
    overflow-x: hidden;
}

main {
    flex: 1 0 auto;
}

/* =========================================================
   HEADER & NAVIGATION - PERFECTED VISIBILITY
========================================================= */
.glass-header {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(184, 135, 70, 0.15);
    padding: 10px 0;
    z-index: 1050;
}

/* Fix Mobile Toggle Color */
.navbar-toggler {
    padding: 8px;
    outline: none !important;
    box-shadow: none !important;
}

/* Forces the FontAwesome icon to be your Gold color */
.text-gold {
    color: #b88746 !important; 
    font-size: 1.5rem;
}

.brand-luxury {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 2rem; /* Scaled for 5-7" screens */
}

.brand-luxury .gold-text {
    position: relative;
    color: #b88746; /* Base Gold */
    background: linear-gradient(to right, #b88746 20%, #fcf6ba 40%, #fcf6ba 60%, #b88746 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* Elegant Sweep Animation */
    animation: shine-sweep 4s linear infinite;
}

.brand-luxury .white-text {
    color: #1a1a1a;
    margin-left: 8px;
    letter-spacing: 2px;
}

/* The Shine Animation */
@keyframes shine-sweep {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}

/* Subtle hover lift for the whole logo */
.brand-luxury:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link {
    color: var(--luxury-charcoal) !important;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 8px 15px !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--gold-deep) !important;
}

/* Book Session Button - High Contrast No Shimmer */
.btn-gold-shimmer {
    background: var(--gold-deep) !important;
    color: #ffffff !important;
    font-weight: 600;
    border-radius: 50px !important;
    padding: 10px 24px !important;
    border: none;
    box-shadow: 0 4px 12px rgba(184, 135, 70, 0.25);
    transition: all 0.3s ease;
}

.btn-gold-shimmer:hover {
    background: var(--gold-premium) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(184, 135, 70, 0.35);
}

/* =========================================================
   MOBILE RESPONSIVENESS (5-7 INCH DEVICES)
========================================================= */
@media (max-width: 991px) {
    .navbar-collapse {
        background: #ffffff;
        margin-top: 15px;
        padding: 20px;
        border-radius: 20px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        border: 1px solid rgba(184, 135, 70, 0.1);
    }

    .navbar-nav .nav-link {
        text-align: center;
        padding: 12px !important;
        border-bottom: 1px solid #f8f9fa;
    }

    .navbar-nav li:last-child .nav-link { border-bottom: none; }

    .btn-gold-shimmer {
        width: 100%; /* Full width for easy tapping */
        margin-top: 10px;
    }
}

/* Specific Tweak for 5-7 inch Portrait Phones */
@media (max-width: 576px) {
    .brand-luxury { font-size: 1.4rem; }
    
    .navbar-toggler {
        padding: 4px;
        font-size: 1.2rem;
    }
}

/* =========================================================
   HERO SECTION
========================================================= */
.hero-carousel-wrapper {
    background: none; /* Deep space background */
    overflow: hidden;
}

.hero-wrapper {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 30px 0;
    position: relative;
    /* Clean luxury background: Pure white to very soft beige */
    background: linear-gradient(90deg, #ffffff 50%, #fcfaf7 100%);
}

.hero-slide-content {
    min-height: 85vh; /* Balanced height */
    display: flex;
    align-items: center;
    position: relative;
    /* Soft glow behind the image to reduce white emptiness */
    background: radial-gradient(circle at 80% 50%, rgba(197, 160, 89, 0.1) 0%, transparent 60%);
}

/* Subtitle (H6) - Use a defined gold color */
.hero-content h6 {
    letter-spacing: 3px;
    color: #b88746 !important; /* Deep Bronze Gold */
    font-weight: 700;
}

/* Main Heading (H1) - Use Deep Charcoal for Luxury Feel */
.hero-content h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    color: #1a1a1a !important; /* Rich Charcoal instead of Pure Black */
    text-shadow: none; /* Removed shadow for a cleaner, modern look */
    font-family: 'Playfair Display', serif;
}

/* Gradient Gold Text - More sophisticated metallic gradient */
.text-gradient-gold {
    display: inline-block;
    
    /* Solid Premium Gold (No Highlight/Shimmer) */
    background: linear-gradient(
        135deg, 
        #8a642a 0%,   /* Rich Bronze */
        #bf953f 50%,  /* Deep Gold */
        #a67c00 100%  /* Burnished Gold */
    );
    
    /* Professional Clipping */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    
    /* High Readability Styling */
    font-weight: 800;
    letter-spacing: -0.5px; /* Tighter letter spacing for premium look */
    
    /* Explicitly kill all animation/shimmer properties */
    animation: none !important;
    background-size: 100% !important;
    background-repeat: no-repeat;
    filter: none; /* Removed shadow to keep it flat and clean */
}

/* Paragraph (P) - Improve readability */
.hero-p {
    color: #4a4a4a !important; /* Dark Grey for high contrast */
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 600px;
}

/* Star Field Background - Subtle and moving */
.star-field {
    position: absolute;
    inset: 0;
    background: url('../../assets/img//astro-slider-bg.jpg');
    opacity: 0.2;
    z-index: 0;
}

/* CTA Buttons - Solid colors look more premium than generic gradients */
.btn-cta {
    background: #1a1a1a; /* Dark button */
    color: #ffffff !important;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid #1a1a1a;
}

.btn-cta:hover {
    background: transparent;
    color: #1a1a1a !important;
    transform: translateY(-3px);
}

/* Special button for "Our Services" */
.btn-outline-premium {
    background: transparent;
    border: 2px solid #b88746;
    color: #b88746 !important;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
}

/* =========================================================
   CAROUSEL CONTROLS (BUTTONS) VISIBILITY FIX
========================================================= */
/* Ensure the button container is visible above the star-field */
.carousel-control-prev,
.carousel-control-next {
    z-index: 10; 
    width: 5%; /* Narrower width so they don't interfere with clicks in the center */
}

/* Customizing the Arrow Icons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 45px;
    height: 45px;
    background-color: #1a1a1a; /* Dark circular background */
    border-radius: 50%;
    background-size: 50%; /* Makes the arrow smaller inside the circle */
    border: 1px solid #b88746; /* Gold border */
    transition: all 0.3s ease;
}

/* Hover effect for a premium feel */
.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: #b88746;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(184, 135, 70, 0.4);
}

/* If you prefer just the gold arrows without a circle background: */
/*
.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23b88746'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23b88746'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}
*/

/* =========================================================
   ZODIAC + IMAGE (LOCKED)
========================================================= */
.soneta-img-container {
    position: relative;
    width: 450px;
    height: 450px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Ensure nothing leaks outside the circle area */
    border-radius: 50%; 
}

/* The spinning Zodiac Ring */
.zodiac-constellation {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    
    /* FIX: Use 'cover' and center it so the dark edges of the JPG don't show */
    background: url('../../assets/img/astro.jpg'); 
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;
    
    /* This ensures the image stays a perfect circle even if the JPG is square */
    -webkit-mask-image: radial-gradient(circle, black 100%, transparent 100%);
    mask-image: radial-gradient(circle, black 100%, transparent 100%);
    
    opacity: 0.8; /* Lowered slightly for a more 'ethereal' feel */
    z-index: 1;
    animation: rotateZodiac 60s linear infinite;
}

/* REMOVED .zodiac-constellation::before as it was creating the 'Half-Circle' overlap */

.soneta-main-img {
    position: relative;
    width: 320px; 
    height: 320px;
    border-radius: 50%;
    object-fit: cover;
    z-index: 3;
    /* A bright white border helps separate the photo from the dark zodiac background */
    border: 10px solid #ffffff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* The Pulsing Glow Ring */
.aura-effect {
    position: absolute;
    width: 110%;
    height: 110%;
    border-radius: 50%;
    border: 1px solid rgba(197, 160, 89, 0.3);
    z-index: 2;
    animation: auraPulse 4s ease-in-out infinite;
}

/* Main Image - Now properly layered */
.soneta-main-img {
    position: relative;
    width: 320px; 
    height: 320px;
    border-radius: 50%;
    object-fit: cover;
    z-index: 3;
    animation: floatSoft 6s ease-in-out infinite;
    border: 12px solid #ffffff; /* Thicker border for 'Portrait' feel */
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1); /* Softer shadow */
}

@keyframes floatSoft {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

@keyframes rotateZodiac {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes auraPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.15); opacity: 0.8; }
}

/* =========================================================
   PERFECTED MOBILE VIEW (5" - 7" DEVICES)
========================================================= */
@media (max-width: 767px) {
    /* Adjust Wrapper for Mobile Screens */
    .hero-wrapper, .hero-slide-content {
        min-height: auto; /* Allow content to dictate height */
        padding: 60px 0 40px 0;
        text-align: center;
        background: radial-gradient(circle at center, #ffffff 0%, #fcfaf7 100%);
    }

    /* Pull Text and Image Closer */
    .hero-content {
        padding-right: 0 !important;
        margin-bottom: 20px;
    }

    /* Scale Down Typography for 5-7 inch screens */
    .hero-content h6 {
        font-size: 0.75rem !important;
        letter-spacing: 2px;
        margin-bottom: 10px !important;
    }

    .hero-content h1 {
        font-size: 2.2rem !important; /* Prevents text overflow */
        line-height: 1.2;
        margin-bottom: 15px !important;
    }

    .hero-p {
        font-size: 0.95rem !important;
        line-height: 1.6;
        padding: 0 10px;
        margin-bottom: 25px !important;
    }

    /* Stack Buttons Vertically on Smallest Screens */
    .d-flex.gap-3 {
        flex-direction: column;
        align-items: center;
        gap: 12px !important;
    }

    .btn-cta, .btn-outline-premium {
        width: 85%; /* Make buttons tappable and uniform */
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    /* Scale the Zodiac Unit so it fits 5-inch screens */
    .soneta-img-container {
        width: 280px !important;
        height: 280px !important;
        margin: 20px auto 0 !important;
    }

    .soneta-main-img {
        width: 190px !important;
        height: 190px !important;
        border-width: 6px !important;
    }

    .aura-effect {
        width: 105%;
        height: 105%;
    }

    /* Hide Carousel Arrows on Mobile (Use Swiping) */
    .carousel-control-prev, .carousel-control-next {
        display: none;
    }
}

/* Tablet / Large Phone Optimization */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-content h1 { font-size: 3rem !important; }
    .soneta-img-container { width: 380px !important; height: 380px !important; }
    .soneta-main-img { width: 260px !important; height: 260px !important; }
}

/* =========================================================
   WISDOM BAR
========================================================= */
.wisdom-bar {
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.08), transparent);
    border-top: 1px solid rgba(212,175,55,0.2);
    border-bottom: 1px solid rgba(212,175,55,0.2);
}

.wisdom-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--gold-glow);
}

/* =========================================================
   SACRED SERVICES SECTION
========================================================= */
#services {
    background: radial-gradient(circle at top, #fff7ed 0%, #ffffff 100%);
    position: relative;
}

#services .text-center p {
    color: #6c757d !important; /* Fixed visibility on white background */
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.bg-gold {
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

/* ================================
   SERVICE CARD ENHANCEMENTS
================================ */
.service-card-luxury {
    background: #ffffff;
    border-radius: 25px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
}

.service-card-luxury:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(197, 160, 89, 0.15);
    border-color: var(--gold-primary);
}

/* Image Container */
.service-img-container {
    height: 240px;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--gold-primary);
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-card-luxury:hover .service-card-img {
    transform: scale(1.1);
}

/* Visibility Fixes for Text */
.service-card-luxury .card-title {
    color: var(--luxury-dark) !important;
    font-weight: 800;
    font-family: 'Playfair Display', serif; /* Optional: adds luxury feel */
}

.service-card-luxury .card-text {
    color: #5a5a5a !important; /* Darker gray for readability */
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Category Tag */
.category-tag {
    background: rgba(197, 160, 89, 0.1);
    color: var(--gold-primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(197, 160, 89, 0.2);
}

/* Price Box */
.price-box {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price-box .amount {
    color: var(--luxury-dark);
    font-size: 1.5rem;
    font-weight: 800;
}

.price-box .currency {
    color: var(--gold-primary);
    font-weight: 600;
}

/* Gold Button Style */
.btn-outline-gold {
    color: var(--gold-primary);
    border: 2px solid var(--gold-primary);
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-outline-gold:hover {
    background: var(--gold-primary);
    color: white;
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.4);
}

/* ================================
   MOBILE RESPONSIVENESS
================================ */
@media (max-width: 768px) {
    #services {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    
    .service-img-container {
        height: 200px;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .service-card-luxury {
        margin-bottom: 10px;
    }
}




/* =========================================================
   GLOBAL MOBILE SAFETY (5–7 inch)
========================================================= */
@media (max-width: 575px) {
    body {
        font-size: 15px;
        line-height: 1.6;
    }
}

/* =========================================================
   QUICK ACTION CARDS
========================================================= */
.quick-actions {
    background: #fff;
}

.quick-card {
    background: #ffffff;
    padding: 22px 18px;
    border-radius: 16px;
    text-align: center;
    text-decoration: none;
    color: #111;
    box-shadow: 0 12px 30px rgba(0,0,0,.18);
    transition: transform .25s ease, box-shadow .25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quick-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,.25);
    border-bottom: 3px solid var(--gold-primary);
}

.quick-card h6 {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 0;
}

/* ICON */
.quick-card .icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
}

/* ICON COLORS */
.icon.pink   { background:#ff6aa2; }
.icon.green  { background:#28c76f; }
.icon.blue   { background:#5b9cff; }
.icon.orange { background:#ff9f43; }

/* MOBILE: 2 cards per row */
@media (max-width: 575px) {
    .quick-actions .col-md-3 {
        width: 50%;
    }
}

/* =========================================================
   STATS + SOCIAL MEDIA SECTION
========================================================= */
.stats-section {
    background: linear-gradient(180deg, #f0dc17 0%, #000 100%);
    padding: 60px 0;
}

.stats-section h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 8px;
}

.stats-section p {
    font-size: 15px;
    opacity: 0.95;
}

/* ================= SOCIAL ICON BAR ================= */
.social-icon-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-btn-wht {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    background: rgba(255,255,255,.15);
    transition: all .25s ease;
    text-decoration: none;
}

/* Brand Colors */
.social-btn-wht.instagram { background:#e84393; }
.social-btn-wht.facebook  { background:#1877f2; }
.social-btn-wht.youtube   { background:#ff0000; }
.social-btn-wht.whatsapp  { background:#25d366; }

.social-btn-wht:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

/* Mobile spacing */
@media (max-width: 575px) {
    .social-btn-wht {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* MOBILE */
@media (max-width: 575px) {
    .stats-section h2 {
        font-size: 32px;
    }
    .stats-section p {
        font-size: 14px;
    }
}

/* =========================================================
   TESTIMONIALS
========================================================= */
.testimonial-box {
    max-width: 760px;
    margin: auto;
    background: #fff;
    padding: 42px 36px;
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 22px 50px rgba(0,0,0,.15);
    border: 2px solid var(--gold-primary);
}

.testimonial-box p {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
}

.testimonial-box h6 {
    margin-top: 18px;
    font-weight: 700;
    color: #000;
}

/* Arrows */
.testimonial-nav {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    box-shadow: 0 10px 25px rgba(0,0,0,.25);
}

.testimonial-nav i {
    color: #000;
    font-size: 18px;
}

.carousel-control-prev {
    left: -24px;
}
.carousel-control-next {
    right: -24px;
}

/* Mobile */
@media (max-width: 575px) {
    .testimonial-box {
        padding: 26px 20px;
    }
    .testimonial-box p {
        font-size: 16px;
    }
    .testimonial-nav {
        width: 40px;
        height: 40px;
    }
    .carousel-control-prev {
        left: 0;
    }
    .carousel-control-next {
        right: 0;
    }
}


/* =========================================================
   TOUCH FRIENDLY (5–7 inch)
========================================================= */
@media (max-width: 575px) {
    a, button {
        min-height: 44px;
    }
}


/* =====================================================
   SOCIAL PROOF – SCREENSHOT TESTIMONIALS
===================================================== */
.social-proof-section {
    background: #fff7ed;
}

/* CARD */
.social-proof-card {
    max-width: 360px;
    margin: auto;
    background: #fff;
    border-radius: 18px;
    padding: 12px;
    position: relative;
    box-shadow: 0 18px 45px rgba(0,0,0,.15);
}

.social-proof-card img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

/* PLATFORM TAG */
.platform-tag {
    position: absolute;
    bottom: 12px;
    right: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    color: #fff;
}

.platform-tag.instagram { background:#e84393; }
.platform-tag.facebook  { background:#1877f2; }
.platform-tag.google    { background:#ea4335; }

/* NAV BUTTONS */
.social-proof-nav {
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    box-shadow: 0 10px 25px rgba(0,0,0,.25);
}

.social-proof-nav i {
    color: #000;
    font-size: 16px;
}

.carousel-control-prev {
    left: -20px;
}

.carousel-control-next {
    right: -20px;
}

/* =====================================================
   MOBILE OPTIMIZATION (5–7 inch phones)
===================================================== */
@media (max-width: 575px) {

    .social-proof-card {
        max-width: 300px;
        padding: 10px;
    }

    .platform-tag {
        font-size: 0.7rem;
    }

    .social-proof-nav {
        width: 38px;
        height: 38px;
    }

    .carousel-control-prev {
        left: 0;
    }

    .carousel-control-next {
        right: 0;
    }
}

/* EXTRA SMALL DEVICES */
@media (max-width: 360px) {
    .social-proof-card {
        max-width: 260px;
    }
}


/* =========================================================
   ABOUT
========================================================= */
/* --- ABOUT PAGE CUSTOM STYLES --- */

/* Image Frame Upgrade */
.about-img-frame {
    position: relative;
    padding: 30px;
    z-index: 1;
}

.frame-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 150px;
    border-top: 8px solid var(--orange-main);
    border-left: 8px solid var(--orange-main);
    z-index: -1;
    border-radius: 20px 0 0 0;
}

.about-img-frame::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    height: 150px;
    border-bottom: 8px solid var(--gold-soft);
    border-right: 8px solid var(--gold-soft);
    z-index: -1;
    border-radius: 0 0 20px 0;
}

.main-about-img {
    border-radius: 30px 100px 30px 100px;
    transition: transform 0.5s ease;
}

.about-img-frame:hover .main-about-img {
    transform: scale(1.02);
}

/* Feature Cards */
.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255, 140, 26, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Stat Cards */
.stat-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid var(--border-soft);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.stat-line {
    width: 40px;
    height: 3px;
    background: var(--orange-main);
    border-radius: 10px;
}

/* Mission Wrapper */
.mission-wrapper {
    background: #fff;
    border-radius: 40px;
    border: 1px solid var(--border-soft);
    box-shadow: 0 20px 40px rgba(255, 140, 26, 0.05);
}

.italic-mission {
    font-style: italic;
    font-family: 'Playfair Display', serif;
    color: #444 !important;
}

.quote-icon-top, .quote-icon-bottom {
    font-size: 2rem;
    color: var(--orange-main);
    opacity: 0.2;
    position: absolute;
}

.quote-icon-top { top: 20px; left: 30px; }
.quote-icon-bottom { bottom: 20px; right: 30px; }

/* Responsive Adjustments */
@media (max-width: 991px) {
    .about-hero { text-align: center; }
    .display-4 { font-size: 2.5rem; }
    .about-img-frame { max-width: 450px; margin: 0 auto; }
}

/* =========================================================
   BOOKING
========================================================= */
.booking-master-wrapper {
    display: flex;
    align-items: flex-start; /* ✅ SAFE */
    padding: 2rem 0;
}

.booking-card-glass {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(212, 175, 55, 0.18);
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    overflow: hidden;
}

#slot-container {
    height: 320px;           /* 👈 fixed height */
    overflow-y: auto;
    padding-right: 4px;
    scrollbar-width: thin;
}

.btn-smart-slot:hover:not(.slot-booked):not(.slot-expired) {
    border-color: var(--orange-main);
    box-shadow: 0 8px 20px rgba(255,140,26,0.15);
    transform: translateY(-1px);
}

.btn-check:checked + .btn-smart-slot {
    background: linear-gradient(135deg, #2b2b2b, #000);
    color: #fff;
    border-color: #000;
}


/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 991px) {
    .booking-card-glass { min-height: auto; }
    .col-lg-3, .col-lg-5 {
        border-right: none !important;
        border-bottom: 1px solid #f1f1f1;
    }
}

/* Section Labels with Spacing */
.section-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 1.4px;
    opacity: 0.85;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--orange-main);
    margin-bottom: 12px;
}

/* Cleaner Inputs */
.smart-input {
    background: #fdfdfd;
    border: 1.5px solid #f0f0f0;
    border-radius: 12px;
    padding: 14px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.smart-input:focus {
    border-color: var(--orange-main);
    background: #fff;
    box-shadow: 0 10px 20px rgba(255, 140, 26, 0.1);
}

/* Timed Slot Buttons */
.btn-smart-slot {
    border: 1.5px solid #f0f0f0;
    background: #fff;
    padding: 12px;
    border-radius: 12px;
    font-weight: 600;
    text-align: left;
    margin-bottom: 8px;
    transition: 0.2s;
}

.btn-check:checked + .btn-smart-slot {
    background: #333;
    color: #fff;
    border-color: #333;
    transform: scale(1.02);
}

/* Status Dots */
.status-dot {
    height: 8px;
    width: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}

@media (min-height: 900px) {
    .booking-master-wrapper {
        min-height: calc(100vh - 120px);
        display: flex;
        align-items: center;
    }
}


/* =======================================================
    LUXURY SPIRITUAL FOOTER - STABLE VERSION
======================================================= */
:root {
    --orange-main: #ff8c00; /* Ensuring variable is defined */
}

.footer-luxury {
    background: linear-gradient(135deg, #fff7ed, #ffe9d6, #fff4ea);
    color: #1a1a1a;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0,0,0,.06);
    padding-top: 60px;
    padding-bottom: 80px; /* Space for floating buttons */
}

.footer-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,140,0,0.12), transparent 70%);
    top: -150px;
    left: -120px;
    filter: blur(80px);
    pointer-events: none;
}

/* Card Effect - Fixed height issues by applying it to a wrapper or ensuring content doesn't stretch weirdly */
.footer-card {
    background: rgba(255,255,255,0.45);
    backdrop-filter: blur(6px);
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    height: 100%; /* Ensures all cards in a row are same height */
    border: 1px solid rgba(255,255,255,0.6);
}

.footer-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--orange-main);
    margin-bottom: 20px;
    position: relative;
}

.footer-heading::after {
    content: "";
    width: 40px;
    height: 2px;
    background: var(--orange-main);
    display: block;
    margin-top: 8px;
}

.footer-description {
    line-height: 1.7;
    color: #444;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* Links */
.footer-nav { list-style: none; padding: 0; }
.footer-nav li { margin-bottom: 12px; }
.footer-nav a {
    font-size: 0.95rem;
    color: #333;
    text-decoration: none;
    transition: all .3s ease;
    display: inline-block;
}

.footer-nav a:hover {
    color: var(--orange-main);
    transform: translateX(5px);
}

/* Contact */
.contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.92rem;
    align-items: flex-start;
}

.contact-item i {
    color: var(--orange-main);
    margin-top: 4px;
}

/* Socials */
.social-links { display: flex; gap: 12px; }
.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-main);
    border: 1px solid rgba(255,140,0,0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-btn:hover {
    background: var(--orange-main);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.06);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* =======================================================
    RESPONSIVE FIXES
======================================================= */

/* TABLET: 2 Columns */
@media (max-width: 991px) and (min-width: 576px) {
    .footer-luxury .col-md-6 {
        margin-bottom: 20px;
    }
}

/* MOBILE: Center Everything */
@media (max-width: 575px) {
    .footer-luxury { text-align: center; padding-top: 40px; }
    
    .footer-card { 
        background: transparent; 
        box-shadow: none; 
        padding: 10px 0; 
        backdrop-filter: none;
    }

    .footer-heading::after { margin: 8px auto 0; }
    
    .contact-item { justify-content: center; }
    
    .social-links { justify-content: center; }

    .footer-description { margin-left: auto; margin-right: auto; }
}

/* =========================================================
   FLOATING BADGE
========================================================= */
.free-offer-badge {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 100px;
    height: 100px;
    z-index: 9999;
    animation: floatAnim 3s infinite ease-in-out;
}

.badge-content {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    /* Richer Metallic Gradient */
    background: linear-gradient(135deg, #fdf6ba 0%, #d4af37 45%, #b38728 65%, #fdf6ba 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), inset 0 0 15px rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.4);
    overflow: hidden;
}

/* --- TEXT READABILITY FIXES --- */
.badge-content .top {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 800;
    color: #3d2b00; /* Darker brown for contrast */
    letter-spacing: 0.5px;
    line-height: 1.1;
    z-index: 2;
    /* Soft shadow to keep text readable during shimmer */
    text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.5); 
}

.badge-content .bottom {
    font-size: 22px;
    font-weight: 900;
    color: #1a1100; /* Near black-brown for maximum visibility */
    line-height: 1;
    z-index: 2;
    /* Contrast shadow */
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.4);
}

/* --- ADJUSTED SHIMMER (Reduced Opacity) --- */
.shimmer {
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    /* Reduced shimmer opacity to .4 so it doesn't hide text */
    background: linear-gradient(45deg, transparent 45%, rgba(255,255,255,0.4) 50%, transparent 55%);
    animation: shimmerEffect 4s infinite;
    z-index: 1;
}

.badge-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #d4af37;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.4;
    animation: pulseGlow 2s infinite;
}

/* --- ANIMATIONS --- */
@keyframes floatAnim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes pulseGlow {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.6); opacity: 0; }
}

@keyframes shimmerEffect {
    0% { transform: translate(-30%, -30%); }
    20%, 100% { transform: translate(30%, 30%); }
}
/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 991px) {
    .hero-content h1 { font-size: 3rem; }
}

@media (max-width: 768px) {
    .soneta-img-container {
        width: 320px;
        height: 320px;
    }
    .hero-content h1 { font-size: 2.5rem; }
}
