.packages-section-four .packages-list {
    display: grid;
    gap: 32px;
    max-width: 960px;
    margin: 0 auto;
}

.packages-list__item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: rgb(173 216 230);
    padding: 28px 32px;
    border-radius: 20px;
    box-shadow: 0 18px 45px -24px rgba(9, 28, 64, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.packages-list__item:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 55px -22px rgba(9, 28, 64, 0.4);
}

.packages-list__icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: #ffa501;
    color: #fff;
    font-size: 30px;
    box-shadow: 0 16px 30px -18px rgb(185 196 212);
}

.packages-list__content {
    flex: 1 1 auto;
}

.packages-list__title {
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: 800;
    color: #222;
}

.packages-list__description {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
}

@media (min-width: 768px) {
    .packages-section-four .packages-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}
.contact-info-wrapper {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px;
    background: #eef5f8;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgb(87 157 180);
}

.contact-item:hover {
    background: rgb(228 239 243);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #579db4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(246, 165, 165, 0.3);
}

.contact-icon i {
    color: white;
    font-size: 18px;
}

.contact-details {
    flex: 1;
}

.contact-label {
    display: block;
    color: #011659;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-link {
    color: #222;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: block;
}

.contact-link:hover {
    color: #fff;
    text-decoration: none;
}

.solutions-bullet-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 30px;
}

.solutions-bullet {
    position: relative;
    padding: 28px 24px 24px 24px;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(236, 240, 246, 0.95));
    box-shadow: 0 18px 35px rgba(11, 40, 81, 0.08);
    border: 1px solid rgba(11, 40, 81, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.solutions-bullet:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 45px rgba(11, 40, 81, 0.14);
}

.solutions-bullet__marker {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, #ff8a05, #ff5f15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
    box-shadow: 0 14px 28px rgba(255, 95, 21, 0.35);
}

.solutions-bullet__content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.solutions-bullet__title {
    font-size: 20px;
    font-weight: 700;
    color: #011659;
    margin: 0;
}

.solutions-bullet__description {
    margin: 0;
    color: rgba(1, 22, 89, 0.75);
    line-height: 1.6;
    font-size: 15px;
}

@media (max-width: 768px) {
    .contact-item {
        padding: 12px;
        margin-bottom: 20px;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
        margin-right: 12px;
    }

    .contact-icon i {
        font-size: 16px;
    }

    .contact-link {
        font-size: 14px;
    }

    .solutions-bullet-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .solutions-bullet {
        padding: 24px 20px;
        gap: 16px;
    }

    .solutions-bullet__marker {
        width: 48px;
        height: 48px;
        font-size: 16px;
    }

    .solutions-bullet__title {
        font-size: 18px;
    }

    .solutions-bullet__description {
        font-size: 14px;
    }
}
@media (min-width: 1100px) {
    .affordable.bg-image {
        /* background-image: url(../gallery/affordable-weight-loss-bg.png); */
        background-repeat: no-repeat;
        background-position: left bottom;
    }
}
@media (max-width: 768px) {
}

/* Floating Contact Button */
.floating-contact-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.floating-contact-btn button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: linear-gradient(135deg, #ff8a05, #ff5f15);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 8px 25px rgba(255, 138, 5, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}

.floating-contact-btn button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 138, 5, 0.5);
    background: linear-gradient(135deg, #ff9a15, #ff6f25);
}

.floating-contact-btn button i {
    font-size: 18px;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Modal Styling */
#contactModal .modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

#contactModal .modal-header {
    background: #f8f4eb;
    color: #fff;
    border-radius: 15px 15px 0 0;
    padding: 20px 30px;
    border-bottom: 1px solid #e3cda4;
}

#contactModal .modal-title {
    font-weight: 700;
    font-size: 24px;
}

#contactModal .btn-close {
    /* filter: brightness(0) invert(1); */
    opacity: 0.9;
    position: relative;
    z-index: 1051;
    cursor: pointer;
    touch-action: manipulation;
}

#contactModal .btn-close:hover {
    opacity: 1;
}

/* Mobile-specific fixes for close button */
@media (max-width: 768px) {
    #contactModal .btn-close {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        padding: 12px;
        margin: -12px -12px -12px auto;
        opacity: 1;
        z-index: 1051;
        position: relative;
        cursor: pointer;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        pointer-events: auto;
    }
    
    #contactModal .modal-header {
        position: relative;
        z-index: 1050;
        padding-right: 12px;
    }
}

#contactModal .modal-body {
    padding: 30px;
}

#contactModal .form-group {
    margin-bottom: 20px;
}

#contactModal .form-label {
    font-weight: 600;
    color: #011659;
    margin-bottom: 8px;
    font-size: 14px;
}

#contactModal .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

#contactModal .form-control:focus {
    border-color: #ff8a05;
    box-shadow: 0 0 0 0.2rem rgba(255, 138, 5, 0.25);
    outline: none;
}

@media (max-width: 768px) {
    .floating-contact-btn {
        bottom: 20px;
        right: 20px;
    }

    .floating-contact-btn button {
        padding: 12px 20px;
        font-size: 14px;
    }

    .floating-contact-btn button span {
        display: none;
    }

    .floating-contact-btn button i {
        font-size: 20px;
    }

    #contactModal .modal-dialog {
        margin: 10px;
    }

    #contactModal .modal-body {
        padding: 20px;
    }
}