.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: calc(100vh - 1rem);
    background: #faf9f6d9;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.custom-modal-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
}

.custom-modal-container {
    max-width: calc(100% - 2rem);
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 40px #00000014, 0 1px 3px #0000000d;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.custom-modal-overlay.is-active .custom-modal-container {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.custom-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #fff;
    border: 1px solid #0000000d;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    color: #2D2A26;
    z-index: 10;
    transition: all 0.3s ease;
}

.custom-modal-close:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

.custom-modal-content {
    height: 100%;
}

.custom-modal-right {
    height: inherit;
    padding: 2.5rem 2rem;
}

.modal-text-group {
    opacity: 0;
    height: 90%;
    transition: opacity 0.2s ease 0.1s;
}

.custom-modal-overlay.is-active .modal-text-group {
    opacity: 1;
}

.modal-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #C07963;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.25rem;
    line-height: 1.1;
    color: #2D2A26;
    margin-bottom: 1rem;
    font-weight: 600;
}

.modal-description {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.modal-note {
    font-size: 0.85rem;
    color: #C07963;
    font-weight: 500;
    margin-bottom: 1rem;
    font-style: italic;
}

.modal-includes {
    height: 90%;
}

.modal-includes h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #2D2A26;
    margin: 1rem 0;
    font-weight: 700;
}

.packages-container {
    display: flex;
    gap: 1rem;
    padding: 10px;
    height: 100%;
}

.packages-container::-webkit-scrollbar {
    width: 4px;
}

.packages-container::-webkit-scrollbar-track {
    background: #00000008;
    border-radius: 4px;
}

.packages-container::-webkit-scrollbar-thumb {
    background: #00000026;
    border-radius: 4px;
}

.package-card {
    background: #fff;
    border: 1px solid #0000000f;
    border-radius: 12px;
    padding: 1.25rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.package-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px #0000000a;
    border-color: #c079634d;
}

.package-header {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #0000000a;
}

.package-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #2D2A26;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.package-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #C07963;
}

.package-features {
    list-style: none;
    padding: 0 !important;
    margin: 0;
}

.package-features>li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: #555;
    line-height: 1.4;
}

.package-features>li::before {
    content: "✓";
    /* Paste the actual checkmark here */
    position: absolute;
    left: 0;
    color: #C07963;
    font-size: 0.85rem;
    font-weight: bold;
}

.package-actions {
    display: flex;
    justify-content: center;
}

.modal-actions {
    opacity: 0;
}

.modal-actions .btn-book-now {
    width: 100%;
    display: block;
    text-align: center;
    background-color: #C07963;
    border-color: #C07963;
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 4px;
    transition: background 0.3s ease;
    text-decoration: none;
}

.modal-actions .btn-book-now:hover {
    background-color: #a86550;
    border-color: #a86550;
}

.feature-group-title {
    margin-top: 10px;
    list-style: none !important;
    color: #333;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sub-features {
    padding-left: 2.5rem;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: #666;
}

.sub-features li {
    list-style-type: circle;
}

.service-content-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: max-content;
}

.service-content-card {
    background: #fff;
    border: 1px solid #0000000f;
    border-radius: 12px;
    padding: 1.1rem 1rem;
    box-shadow: 0 6px 20px #00000008;
}

.service-content-card {
    background: #fff;
}

.service-step-content {
    margin-left: 17px;
    padding-left: 40px;
    position: relative;
}

.service-step-content>div {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #c07963;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-step-description {
    margin-left: 17px;
    padding: 15px 0 40px 38px;
    border-left: 2px dashed #c07963;
}

.service-process-card:last-of-type .service-step-description {
    border-left: none;
}

.service-content-card p {
    margin: 0;
    color: #4f4a43;
    line-height: 1.55;
    font-size: 0.92rem;
}

.service-step-no {
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
}

.service-process-card h3 {
    color: #2d2a26;
}

.service-process-card p {
    margin: 0;
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
}

.service-tips .includes-item strong {
    color: #c07963;
}

@media (max-width: 768px) {

    .service-content-grid,
    .service-process-grid {
        grid-template-columns: 1fr;
    }

    .packages-container {
        flex-direction: column;
    }
}
@media (max-width: 900px) {

    .packages-container {
        flex-wrap: wrap;
        
    }
}