

/* Icon */
.chip-icon{   
  color:#ff00dd;
  font-size:1.1rem;
  flex-shrink:0;
}

.category-chip.active .chip-icon{ 
    color:#00ff15;
}

 


/* ========================= */
/* CUSTOM SELECT */
/* ========================= */

.custom-select{
    position:relative;
    width:280px;
    font-family:'Inter', sans-serif;
}

/* Trigger */
.select-trigger{

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:16px 18px;

    background:#fff;

    border-radius:18px;

    border:1px solid rgba(0,0,0,0.08);

    cursor:pointer;

    transition:0.3s ease;

    box-shadow:0 4px 20px rgba(0,0,0,0.04);
}

.select-trigger:hover{
    transform:translateY(-2px);

    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* Left */
.trigger-left{
    display:flex;
    align-items:center;
    gap:12px;
}

.trigger-left i{
    color:#b07a8a;
}

.selected-text{
    font-size:0.95rem;
    font-weight:500;
}

/* Arrow */
.dropdown-arrow{
    font-size:0.85rem;
    color:#999;

    transition:0.3s ease;
}

.custom-select.open .dropdown-arrow{
    transform:rotate(180deg);
}

/* Dropdown */
.select-options{

    position:absolute;

    top:110%;
    left:0;

    width:100%;

    background:#fff;

    border-radius:18px;

    padding:10px;

    box-shadow:0 20px 50px rgba(0,0,0,0.12);

    opacity:0;
    visibility:hidden;

    transform:translateY(10px);

    transition:0.25s ease;

    z-index:100;
}

.custom-select.open .select-options{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}


.fa-wand-magic-sparkles{
    color:#ff0000;

    text-shadow:
        0 0 6px rgba(255, 0, 191, 0.6),
        0 0 12px rgba(255, 0, 191, 0.5),
        0 0 24px rgba(255, 0, 191 , 0.35);

    animation:goldGlow 1.8s ease-in-out infinite;
}

@keyframes goldGlow{
    0%{
        filter:brightness(1);
        text-shadow:
            0 0 6px rgba(255, 0, 191, 0.5),
            0 0 12px rgba(255, 0, 191, 0.4),
            0 0 24px rgba(255, 0, 191, 0.2);
    }
    50%{
        filter:brightness(1.3);
        text-shadow:
            0 0 10px rgba(255, 0, 191, 0.8),
            0 0 20px rgba(255, 0, 191, 0.6),
            0 0 40px rgba(255, 0, 191, 0.35);
    }
    100%{
        filter:brightness(1);
        text-shadow:
            0 0 6px rgba(255, 0, 191, 0.5),
            0 0 12px rgba(255, 0, 191, 0.4),
            0 0 24px rgba(255, 0, 191, 0.2);
    }
}


.modal-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:50%;
}

.modal-hero {
    width: 100%;
    height: 280px;              
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
}

/* THE IMAGE */
.modal-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;         
    object-position: center;   
    display: block;
    transition: transform 0.4s ease;
}

/* nice hover zoom effect */
.modal-hero:hover img {
    transform: scale(1.05);
}


.modal-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-top: 12px;
}





.page-hero {
  background: linear-gradient(135deg, #fce8ed, #fdf5f0);
  padding: 8rem 2rem 4rem;
  text-align: center;
}

.page-card {
  max-width: 900px;
  margin: auto;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 2.5rem;
}

.page-section {
  margin-top: 2rem;
}

.page-section h2 {
  font-family: "Playfair Display", serif;
  color: var(--rose-deep);
  margin-bottom: 0.5rem;
}

.page-section p {
  color: var(--text-mid);
  line-height: 1.7;
}





#listBusiness { 
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);

  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);

  padding: 24px;
  margin: 20px;
}



#listBusiness::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://images.unsplash.com/photo-1634449571010-02389ed0f9b0?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8M3x8c2Fsb258ZW58MHx8MHx8fDA%3D"); 
  background-size: cover;
  background-position: center;
  opacity: 0.3;  
  z-index: -1;
  border-radius: 18px;
}








.business-address {
    position: relative;
    padding: 60px 20px;
    border-radius: 16px;
    overflow: hidden;
    max-width: 1100px;
    margin: 40px auto;
    /* FIX 1: Ensure there is a base background color in case image fails */
    background-color: #f9f9f9; 
    display: block; 
}

.business-address::before {
    content: "";
    position: absolute;
    top: 0; left: 0; 
    width: 100%; height: 100%;
    background-image: url("https://images.unsplash.com/photo-1519500099198-fd81846b8f03?w=1000");
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
    /* FIX 2: Prevent pointer events so it doesn't block map clicks */
    pointer-events: none; 
}

.section-header, .content-wrapper {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.content-wrapper {
    display: flex;
    gap: 40px;
    align-items: stretch; /* FIX 3: Stretch makes both columns equal height */
    justify-content: center;
    width: 100%;
}

.map-container {
    flex: 1.2;
    /* FIX 4: Fallback height if aspect-ratio fails */
    min-height: 400px; 
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 5px solid #fff;
    background: #eee; /* Shows a grey box while map loads */
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block; /* Removes weird bottom gaps */
}

.contact-details {
    flex: 0.8;
    display: flex;
}

.info-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    width: 100%;
}

.info-card h3 {
    margin-top: 0;
    color: #ff4d6d;
    margin-bottom: 20px;
}

.info-item { margin-bottom: 20px; text-align: left; }
.info-item strong { display: block; font-size: 0.8rem; color: #888; text-transform: uppercase; }
.info-item p { margin: 0; font-size: 1rem; color: #222; }

@media (max-width: 850px) {
    .content-wrapper { flex-direction: column; }
    .map-container { width: 100%; min-height: 300px; aspect-ratio: 16 / 9; }
    .contact-details { width: 100%; }
}





.service-list {
  list-style: none;
  padding: 0;
  width: fit-content;  
}

.service-list li {
  position: relative; 
  cursor: help;  
  padding: 4px;
  width: fit-content;
}

.service-list li a {
  text-decoration: none;
  color: #ea00ff;
  font-weight: 500; 
  pointer-events: none; 
}


.service-list li:hover::after {
  content: attr(data-info);
  position: absolute;
  left: 100%;           
  margin-left: 15px;     
  top: 50%;
  transform: translateY(-50%);
  background: #ff4d6d;
  color: white;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  white-space: nowrap;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  display: block;
}
 
.service-list li:hover::before {
  content: "";
  position: absolute;
  left: 100%;
  margin-left: 5px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: transparent #ff4d6d transparent transparent;
  display: block;
}


