﻿.custom_rule{color:inherit;}
/* ==============================================================
   Premium Footer Styles
   ============================================================== */
.premium-footer {
    background-color: #1A1F1D;
    padding: 80px 0 30px;
    color: #b3b3b3;
    font-family: 'Open Sans', sans-serif;
}

.premium-footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col-brand { flex: 0 1 32%; }
.footer-col-links { flex: 0 1 22%; }
.footer-col-contact { flex: 0 1 38%; }

.premium-footer .footer-logo {
    height: 60px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    margin-bottom: 25px;
    transition: opacity 0.3s ease;
}
.premium-footer .footer-logo:hover { opacity: 1; }

.premium-footer .footer-bio {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #a4a2a6;
}

/* Social Icons */
.social-icon-group {
    display: flex;
    gap: 15px;
}
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none !important;
}
.social-icon:hover {
    background-color: #d7b56d;
    color: #fff !important;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(215, 181, 109, 0.4);
}

/* Headings */
.premium-footer h5 {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}
.premium-footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: #d7b56d;
}

/* Lists */
.premium-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.premium-footer ul li {
    margin-bottom: 15px;
}
.premium-footer ul li a {
    color: #b3b3b3;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}
.premium-footer ul li a:hover {
    color: #d7b56d;
    transform: translateX(5px);
}

/* Call To Action */
.footer-cta {
    margin-top: 25px !important;
}
.footer-cta a {
    color: #d7b56d !important;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.footer-cta a i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}
.footer-cta a:hover i {
    transform: translateX(5px);
}

/* Contact Info Layout */
.contact-info {
}
.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    line-height: 1.6;
}
.contact-info li i {
    color: #d7b56d;
    font-size: 18px;
    margin-top: 3px;
}
.contact-info li span,
.contact-info li a {
    flex: 1;
}

.footer-hours {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-hours i {
    color: #d7b56d;
    font-size: 18px;
}
.footer-hours span {
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
}

/* Bottom Bar */
.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
    text-align: center;
}
.footer-bottom-bar p {
    margin: 0;
    font-size: 13px;
    color: #777;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 991px) {
    .footer-col-brand { flex: 0 1 100%; text-align: center; margin-bottom: 20px;}
    .premium-footer h5::after { left: 50%; transform: translateX(-50%); }
    .social-icon-group { justify-content: center; }
    .footer-col-links, .footer-col-contact { flex: 0 1 45%; text-align: center; }
    .contact-info li { flex-direction: column; align-items: center; gap: 5px; text-align: center; }
    .footer-hours { justify-content: center; }
}
@media (max-width: 767px) {
    .premium-footer-grid { gap: 30px; }
    .footer-col-links, .footer-col-contact { flex: 0 1 100%; }
}

/* Migrated Nav Styles */

    /* Refine Navigation Spacing & Alignment */
    .top_panel_wrap .menu_main_nav {
        display: flex;
        align-items: center;
    }
    .top_panel_wrap .menu_main_nav > li {
        margin-right: 35px; /* Increased gap for a premium breathable look */
        padding: 10px 0;
    }
    .top_panel_wrap .menu_main_nav > li:last-child {
        margin-right: 0;
    }
    
    /* Typography & Color */
    .top_panel_wrap .menu_main_nav > li > a {
        padding: 5px 0 !important;
        position: relative;
        font-family: 'Raleway', sans-serif;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: #333333 !important;
        transition: color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    }
    
    /* Hover & Active States */
    .top_panel_wrap .menu_main_nav > li > a:hover,
    .top_panel_wrap .menu_main_nav > li.current-menu-item > a {
        color: #d7b56d !important;
    }

    /* Elegant center-expanding underline */
    .top_panel_wrap .menu_main_nav > li > a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 50%;
        background-color: #d7b56d;
        transform: translateX(-50%);
        transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        border-radius: 2px;
    }
    .top_panel_wrap .menu_main_nav > li > a:hover::after,
    .top_panel_wrap .menu_main_nav > li.current-menu-item > a::after {
        width: 100%;
    }

    /* Desktop WhatsApp Button - Refined Premium Look */
    .whatsapp_btn_wrap {
        display: flex;
        align-items: center;
        margin-left: 30px;
        height: 100%;
        padding-left: 30px;
        border-left: 1px solid rgba(0,0,0,0.08); /* Subtle separator */
    }
    .whatsapp_btn_desktop {
        background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
        color: white !important;
        border: none !important;
        border-radius: 30px !important;
        padding: 12px 28px !important;
        font-family: 'Raleway', sans-serif;
        font-weight: 600;
        font-size: 13px;
        letter-spacing: 1px;
        text-transform: uppercase;
        display: inline-flex;
        align-items: center;
        text-decoration: none;
        box-shadow: 0 4px 15px rgba(18, 140, 126, 0.2);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
        line-height: normal;
    }
    .whatsapp_btn_desktop:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(18, 140, 126, 0.35);
        color: white !important;
    }
    .whatsapp_btn_desktop i {
        font-size: 1.4em;
        margin-right: 10px;
    }

    /* Mobile WhatsApp Button */
    .whatsapp_btn_wrap_mobile {
        float: right;
        display: flex;
        align-items: center;
        height: 56px;
        margin-right: 15px;
    }
    .whatsapp_btn_mobile {
        display: inline-flex;
        align-items: center;
        background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
        color: white !important;
        padding: 8px 18px;
        border-radius: 30px;
        font-size: 12px;
        font-family: 'Raleway', sans-serif;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        text-decoration: none;
        box-shadow: 0 4px 12px rgba(18, 140, 126, 0.2);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }
    .whatsapp_btn_mobile:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(18, 140, 126, 0.35);
        color: white !important;
    }
    .whatsapp_btn_mobile i {
        font-size: 1.3em;
        margin-right: 6px;
    }
    
    /* Ensure perfect vertical alignment in the menu main wrap */
    .menu_main_wrap {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
    
    /* --- Sticky Header Enhancements (Glassmorphism) --- */
    .top_panel_middle {
        padding: 5px 0 !important; /* Consistent padding at all times */
        transition: background-color 0.4s ease, box-shadow 0.4s ease;
    }
    
    /* Fix excessive vertical navbar height & keep it tight */
    .top_panel_middle .menu_main_wrap {
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }
    
    .top_panel_fixed_wrap .top_panel_middle {
        background-color: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    }

    /* --- Logo Optimization and Smooth Scaling --- */
    .top_panel_middle .contact_logo {
        display: flex;
        align-items: center;
        height: 100%;
    }
    .top_panel_middle .logo {
        margin: 0;
        display: flex;
        align-items: center;
    }
    
    /* Default Logo State (Constant size) */
    .top_panel_middle .logo img.logo_main {
        height: 75px !important;
        width: auto !important;
        max-width: 250px;
        object-fit: contain;
        transform-origin: left center;
        display: block !important;
    }

    /* Hide the secondary fixed logo to prevent jerky swapping */
    .top_panel_middle .logo img.logo_fixed {
        display: none !important;
    }

    /* Mobile Header Refinements */
    @media (max-width: 767px) {
        .header_mobile {
            background-color: rgba(255, 255, 255, 0.95) !important;
            backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            padding: 8px 0 !important;
            transition: all 0.3s ease;
        }
        .header_mobile .logo img {
            height: 40px !important;
            width: auto !important;
        }
    }


    /* Refine Navigation Spacing & Alignment */
    .top_panel_wrap .menu_main_nav {
        display: flex;
        align-items: center;
    }
    .top_panel_wrap .menu_main_nav > li {
        margin-right: 35px; /* Increased gap for a premium breathable look */
        padding: 10px 0;
    }
    .top_panel_wrap .menu_main_nav > li:last-child {
        margin-right: 0;
    }
    
    /* Typography & Color */
    .top_panel_wrap .menu_main_nav > li > a {
        padding: 5px 0 !important;
        position: relative;
        font-family: 'Raleway', sans-serif;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: #333333 !important;
        transition: color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    }
    
    /* Hover & Active States */
    .top_panel_wrap .menu_main_nav > li > a:hover,
    .top_panel_wrap .menu_main_nav > li.current-menu-item > a {
        color: #d7b56d !important;
    }

    /* Elegant center-expanding underline */
    .top_panel_wrap .menu_main_nav > li > a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 50%;
        background-color: #d7b56d;
        transform: translateX(-50%);
        transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        border-radius: 2px;
    }
    .top_panel_wrap .menu_main_nav > li > a:hover::after,
    .top_panel_wrap .menu_main_nav > li.current-menu-item > a::after {
        width: 100%;
    }

    /* Desktop WhatsApp Button - Refined Premium Look */
    .whatsapp_btn_wrap {
        display: flex;
        align-items: center;
        margin-left: 30px;
        height: 100%;
        padding-left: 30px;
        border-left: 1px solid rgba(0,0,0,0.08); /* Subtle separator */
    }
    .whatsapp_btn_desktop {
        background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
        color: white !important;
        border: none !important;
        border-radius: 30px !important;
        padding: 12px 28px !important;
        font-family: 'Raleway', sans-serif;
        font-weight: 600;
        font-size: 13px;
        letter-spacing: 1px;
        text-transform: uppercase;
        display: inline-flex;
        align-items: center;
        text-decoration: none;
        box-shadow: 0 4px 15px rgba(18, 140, 126, 0.2);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
        line-height: normal;
    }
    .whatsapp_btn_desktop:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(18, 140, 126, 0.35);
        color: white !important;
    }
    .whatsapp_btn_desktop i {
        font-size: 1.4em;
        margin-right: 10px;
    }

    /* Mobile WhatsApp Button */
    .whatsapp_btn_wrap_mobile {
        float: right;
        display: flex;
        align-items: center;
        height: 56px;
        margin-right: 15px;
    }
    .whatsapp_btn_mobile {
        display: inline-flex;
        align-items: center;
        background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
        color: white !important;
        padding: 8px 18px;
        border-radius: 30px;
        font-size: 12px;
        font-family: 'Raleway', sans-serif;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        text-decoration: none;
        box-shadow: 0 4px 12px rgba(18, 140, 126, 0.2);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }
    .whatsapp_btn_mobile:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(18, 140, 126, 0.35);
        color: white !important;
    }
    .whatsapp_btn_mobile i {
        font-size: 1.3em;
        margin-right: 6px;
    }
    
    /* Ensure perfect vertical alignment in the menu main wrap */
    .menu_main_wrap {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
    
    /* --- Sticky Header Enhancements (Glassmorphism) --- */
    .top_panel_middle {
        padding: 5px 0 !important; /* Consistent padding at all times */
        transition: background-color 0.4s ease, box-shadow 0.4s ease;
    }
    
    /* Fix excessive vertical navbar height & keep it tight */
    .top_panel_middle .menu_main_wrap {
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }
    
    .top_panel_fixed_wrap .top_panel_middle {
        background-color: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    }

    /* --- Logo Optimization and Smooth Scaling --- */
    .top_panel_middle .contact_logo {
        display: flex;
        align-items: center;
        height: 100%;
    }
    .top_panel_middle .logo {
        margin: 0;
        display: flex;
        align-items: center;
    }
    
    /* Default Logo State (Constant size) */
    .top_panel_middle .logo img.logo_main {
        height: 75px !important;
        width: auto !important;
        max-width: 250px;
        object-fit: contain;
        transform-origin: left center;
        display: block !important;
    }

    /* Hide the secondary fixed logo to prevent jerky swapping */
    .top_panel_middle .logo img.logo_fixed {
        display: none !important;
    }

    /* Mobile Header Refinements */
    @media (max-width: 767px) {
        .header_mobile {
            background-color: rgba(255, 255, 255, 0.95) !important;
            backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            padding: 8px 0 !important;
            transition: all 0.3s ease;
        }
        .header_mobile .logo img {
            height: 40px !important;
            width: auto !important;
        }
    }


/* Page Header Background */
.top_panel_image {
    background-image: url('../images/bannerCDS.png') !important;
}


/* Fix Wellness Center Cards */
.sc_services_type_images .post_thumb img {
    height: 300px !important;
    width: 100% !important;
    object-fit: cover !important;
}


/* Service Grid Styles Extracted from index.html */
    .sc_services_grid {
        margin-top: 30px;
        display: flex;
        flex-wrap: wrap;
    }
    .spa-service-card {
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.04);
        transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    .spa-service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    }
    .spa-service-image {
        height: 240px;
        background-size: cover;
        background-position: center;
        position: relative;
    }
    .spa-service-price {
        position: absolute;
        bottom: 20px;
        right: 20px;
        background: rgba(255,255,255,0.95);
        color: #2C3531;
        padding: 8px 16px;
        border-radius: 30px;
        font-family: 'Raleway', sans-serif;
        font-weight: 600;
        font-size: 13px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    .spa-service-content {
        padding: 35px 30px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }
    .spa-service-content h4 {
        margin: 0 0 15px 0;
        font-family: 'Raleway', sans-serif;
        font-weight: 500;
        font-size: 22px;
        color: #2C3531;
    }
    .spa-service-content p {
        color: #666;
        line-height: 1.7;
        font-size: 14px;
        margin-bottom: 25px;
        flex-grow: 1;
    }
    .spa-service-meta {
        border-top: 1px solid rgba(0,0,0,0.05);
        padding-top: 20px;
        display: flex;
        align-items: center;
        color: #8F9E8B;
        font-weight: 600;
        font-size: 13px;
    }
    .spa-service-meta i {
        margin-right: 8px;
        font-size: 1.2em;
    }
    /* Full-width Layout Overrides */
    .page_content_wrap .content_wrap {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .page_content_wrap .content_wrap .content {
        width: 100% !important;
        max-width: 100% !important;
    }
    .page_content_wrap .content_wrap .wrapper,
    .page_content_wrap .content_wrap .testimonial-container {
        max-width: 1170px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page_content_wrap .content_wrap .sc_row[data-sc-full-width="true"] {
        left: 0 !important;
        width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        box-sizing: border-box !important;
    }








/* --- Zen Bloom Style Mobile Menu --- */
@media (max-width: 767px) {
    /* Container styling */
    .header_mobile .side_wrap {
        position: fixed !important;
        top: 0 !important;
        bottom: 0 !important;
        left: -320px !important;
        height: 100vh !important;
        background-color: #ffffff !important;
        background-image: none !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        padding: 0 !important;
        width: 320px !important;
        max-width: 85vw !important;
        box-shadow: 5px 0 25px rgba(0,0,0,0.15) !important;
        z-index: 100000 !important;
        transition: left 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
        display: block !important;
    }
    .header_mobile .side_wrap.open {
        left: 0 !important;
    }

    /* Top Beige Logo Area */
    .header_mobile .side_wrap .mobile_menu_header {
        background-color: #F8F5F0 !important; /* Light beige */
        padding: 60px 20px 40px !important;
        text-align: center !important;
        display: block !important;
        border-bottom: 1px solid #eaeaea !important;
    }
    .header_mobile .side_wrap .mobile_menu_header img {
        max-height: 80px !important;
        width: auto !important;
        margin: 0 auto !important;
        display: block !important;
    }

    /* Golden Close Button */
    .header_mobile .side_wrap .close {
        position: absolute !important;
        top: 15px !important;
        right: 15px !important;
        width: 36px !important;
        height: 36px !important;
        background-color: #D3A75A !important;
        color: #ffffff !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 18px !important;
        font-weight: bold !important;
        z-index: 100001 !important;
        cursor: pointer !important;
        text-transform: none !important;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1) !important;
        padding: 0 !important;
        line-height: 1 !important;
    }

    /* Navigation Links Container */
    .header_mobile .side_wrap .panel_top {
        padding: 20px 0 !important;
        background-color: transparent !important;
    }
    .header_mobile .side_wrap .menu_main_nav {
        margin: 0 !important;
        padding: 0 20px !important;
        background-color: transparent !important;
    }

    /* Individual Nav Links */
    .header_mobile .side_wrap .menu_main_nav > li {
        border-bottom: 1px solid #f0f0f0 !important;
        background-color: #ffffff !important; /* Force white background */
        background: none !important;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
    }
    .header_mobile .side_wrap .menu_main_nav > li > a {
        color: #001f3f !important; /* Dark navy text */
        font-family: 'Raleway', sans-serif !important;
        font-size: 18px !important;
        font-weight: 500 !important;
        padding: 18px 10px !important;
        display: flex !important;
        align-items: center !important;
        background-color: #ffffff !important; /* Override theme colors */
        background: none !important;
        text-transform: none !important;
        text-decoration: none !important;
    }

    /* Add chevron icon before text */
    .header_mobile .side_wrap .menu_main_nav > li > a::before {
        content: '\203A' !important; /* Unicode single right chevron */
        font-family: sans-serif !important;
        margin-right: 15px !important;
        font-size: 24px !important;
        line-height: 1 !important;
        color: #001f3f !important;
        font-weight: 300 !important;
        display: inline-block !important;
        transform: translateY(-2px) !important;
    }

    /* Hide redundant elements in mobile menu */
    .header_mobile .side_wrap .search_wrap,
    .header_mobile .side_wrap .panel_middle,
    .header_mobile .side_wrap .panel_bottom {
        display: none !important;
    }
}
