
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.services-wrapper {
   display: flex; 
    flex-wrap: wrap; 
    gap: 10px; 
       margin: 0px auto;
        background-color: #ffffff; 
    border-radius: 10px;
    padding: 10px;
   
     background: transparent;
}

.mobile-menu-dropdown-container {
    display: none; 
    width: 100%; 
    margin-bottom: 15px; 
}

.mobile-service-select {
    width: 100%;
    padding: 10px 15px;
    font-size: 1rem;
    border: 1px solid #009a44;
    border-radius: 5px;
    background-color: #f9f9f9;
    color: #009a44;
    appearance: none; 
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23009a44"><path d="M7 10l5 5 5-5z"/></svg>'); 
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    cursor: pointer;
}


.services-menu {
  flex: 1; 
    min-width: 200px; 
    max-width: 350px; 
        border-radius: 8px;
    padding: 7px;
    display: block; 
    box-shadow: none;
  }

.service-menu-item {
   padding: 10px; 
    margin-bottom: 5px;
    border-radius: 5px;
    cursor: pointer;
      transition: background-color 0.2s ease, color 0.2s ease;
    color: #ad8502; 
     border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.service-menu-item h3 {
  margin: 0;
    font-size: clamp(1rem, 0.9rem + 0.5vw, 1.25rem); 
        color: #01873b; 
       text-shadow: none;
       padding: 0;
      
}

.service-menu-item .brief-description {
    font-size: clamp(0.75rem, 0.65rem + 0.5vw, 0.9rem);
    color: #547763;
    margin-top: 5px;
    line-height: 1;
    margin-top: 2px;
}

.service-menu-item:hover {
    background-color: #f7d875; 
    color: #009a44; 
}

.service-menu-item:hover h3,
.service-menu-item:hover .brief-description {
    color: #009a44;
}

.service-menu-item.active {
  
    color: #009a44; 
    border: none;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}




.services-detail-pane {
    flex: 2; 
    background-color: #f9f9f98e;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 7px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
      min-height: 200px;
    box-shadow: var(--moderate-shadow);
    text-align: left;
}

.service-detailed-content {
    display: none; 
    flex-direction: column;
    padding: 10px;
    animation: fadeIn 0.5s ease-in-out; 
    height: 100%;
}

.service-detailed-content.active {
    display: flex;
}


/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}


.detailed-title {
    font-size: clamp(1.2rem, 1rem + 1vw, 1.8rem); 
    font-weight: bold;
    color: #1e7544;
    margin-bottom: 15px;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px solid #f7d875;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.service-detailed-content p {
    font-size: clamp(0.8rem, 0.7rem + 0.5vw, 1rem); 
    line-height: 1.1;
    margin-bottom: 5px;
 }
.service-detailed-content p:not(.detailed-title) {
flex-grow: 1;
width: 95%;
align-content: center;
}
.accounts-package-detailed-header {
    color: #1e7544;
    font-weight: bold;
    font-size: clamp(0.9rem, 0.8rem + 0.5vw, 1.1rem);
    margin-top: 10px;
    margin-bottom: 0px;
  
}
.service-detailed-content .value-check-list {
    margin-top: auto; width: 95%; margin-bottom: 15px;
}

.inc-in-package {
    justify-content: left;
    align-items:center;
    text-align: center;
    margin-top: auto; 
    padding-top: 10px;
    border-top: 1px dashed #ccc;
   
    margin-top: auto;
}

.inc-in-package-text {
    color: #f9f9f9;
         font-size: clamp(0.8rem, 0.7rem + 0.5vw, 1rem);
       padding: 5px 15px;
    border-radius: 25px;
    display: inline-block; 
}

/* --- Media Queries for Responsiveness --- */
@media (max-width: 768px) {
    .services-wrapper {
        flex-direction: column; /* Stack columns on smaller screens */
        padding: 10px;
        gap: 1px; /* Adjust gap for stacked layout */
    }

    /* Show mobile dropdown */
    .mobile-menu-dropdown-container {
        display: block;
    }

    /* Hide the traditional vertical menu */
    .services-menu {
        display: none;
    }

    .services-detail-pane {
        min-width: unset;
        max-width: 100%; 
             padding: 10px; 
        margin: auto;
    }

    
    .service-menu-item {
        padding: 10px;
    }
    .service-menu-item h3 {
        font-size: clamp(0.725rem, 0.5946rem + 0.7522vw, 1rem);
    }
    .service-menu-item .brief-description {
        font-size: clamp(0.6875rem, 0.6005rem + 0.4348vw, 0.9375rem);
    }
    .detailed-title {
        font-size: 1.4rem;
    }
    .service-detailed-content p {
        font-size: 0.85rem;
    }
    .accounts-package-detailed-header {
        font-size: 0.9rem;
    }
    .inc-in-package-text {
        font-size: 0.8rem;
    }
}