.event-planning-hero {
    background: linear-gradient(135deg, #0078ff 0%, #00c6ff 100%);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-logo {
    width: 200px;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border: 5px solid white;
}

.hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-info h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-info p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 10px;
}

.filter-section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.filter-section h4 {
    margin-bottom: 20px;
    font-weight: 600;
    color: #333;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

.filter-group select {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
}

.filter-group select:focus {
    outline: none;
    border-color: #0078ff;
    box-shadow: 0 0 0 3px rgba(0, 120, 255, 0.1);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f5f5f5;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
}

.product-price {
    font-size: 1.4rem;
    color: #0078ff;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-price-label {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 15px;
}

.product-person-count {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-person-count i {
    color: #0078ff;
    font-size: 1.1rem;
}

.product-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.btn-select {
    flex: 1;
    padding: 12px;
    background: linear-gradient(135deg, #0078ff 0%, #00c6ff 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.btn-select:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 120, 255, 0.3);
}

.btn-details {
    flex: 1;
    padding: 12px;
    background: white;
    color: #0078ff;
    border: 2px solid #0078ff;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.btn-details:hover {
    background: #0078ff;
    color: white;
    transform: translateY(-2px);
}

/* Selected Subcategories Section */
.selected-section {
    background: linear-gradient(135deg, #f5f9ff 0%, #f0f7ff 100%);
    padding: 40px 0;
    margin-top: 40px;
    border-top: 2px solid #e0e0e0;
    display: none;
}

.selected-section.active {
    display: block;
}

.selected-section h3 {
    margin-bottom: 30px;
    color: #333;
    font-weight: 600;
    font-size: 1.5rem;
}

.subcategory-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.subcategory-item {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.subcategory-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.subcategory-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.subcategory-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.add-service-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0078ff 0%, #00c6ff 100%);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-service-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 120, 255, 0.3);
}

.selected-service-card {
    background: linear-gradient(135deg, #f9f9f9 0%, #f5f5f5 100%);
    border: 2px solid #0078ff;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.service-image-thumb {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    flex-shrink: 0;
}

.service-image-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-info {
    flex: 1;
}

.service-name-selected {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.service-meta {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 5px;
}

.service-price-selected {
    font-size: 1.1rem;
    color: #0078ff;
    font-weight: 700;
}

.change-btn {
    padding: 8px 16px;
    background: linear-gradient(135deg, #0078ff 0%, #00c6ff 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.change-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 120, 255, 0.3);
}

.next-button-container {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.btn-next {
    padding: 14px 40px;
    background: linear-gradient(135deg, #00c853 0%, #00a84d 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s;
    min-width: 250px;
}

.btn-next:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 200, 83, 0.3);
}

.btn-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Inquiry Form Modal */
.inquiry-modal-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1100;
    align-items: center;
    justify-content: center;
}

.inquiry-modal-backdrop.active {
    display: flex;
}

.inquiry-modal-content {
    background: white;
    border-radius: 15px;
    width: 95%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: slideUp 0.3s ease;
}

.inquiry-modal-header {
    padding: 25px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.inquiry-modal-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.inquiry-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
}

.inquiry-modal-close:hover {
    color: #333;
}

.inquiry-modal-body {
    padding: 25px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0078ff;
    box-shadow: 0 0 0 3px rgba(0, 120, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.inquiry-form-actions {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.btn-submit {
    flex: 1;
    padding: 12px;
    background: linear-gradient(135deg, #0078ff 0%, #00c6ff 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 120, 255, 0.3);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-cancel {
    flex: 1;
    padding: 12px;
    background: white;
    color: #666;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cancel:hover {
    border-color: #999;
    color: #333;
}

.form-error {
    color: #d32f2f;
    font-size: 0.85rem;
    margin-top: 5px;
}

.form-success {
    padding: 15px;
    background: #e8f5e9;
    border: 1px solid #4caf50;
    border-radius: 8px;
    color: #2e7d32;
    margin-bottom: 20px;
    display: none;
}

/* Modal Styles */
.modal-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-backdrop.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 15px;
    width: 95%;
    max-width: 900px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    padding: 25px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #333;
}

.modal-filters {
    padding: 20px 25px;
    background: #f9f9f9;
    border-bottom: 1px solid #e0e0e0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.modal-filter-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
    font-size: 0.9rem;
}

.modal-filter-group select {
    width: 100%;
    padding: 8px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.95rem;
}

.modal-body {
    padding: 25px;
}

.event-service-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.event-service-card-modal {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    cursor: pointer;
    transition: all 0.3s;
}

.event-service-card-modal:hover {
    border-color: #0078ff;
    box-shadow: 0 6px 20px rgba(0, 120, 255, 0.15);
}

.event-service-image-modal {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
    flex-shrink: 0;
}

.event-service-image-modal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-service-content-modal {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.event-service-name-modal {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.event-service-category-modal {
    font-size: 0.85rem;
    color: #0078ff;
    font-weight: 500;
}

.event-service-price-modal {
    font-size: 1.2rem;
    color: #0078ff;
    font-weight: 700;
}

.event-service-description-modal {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin-top: 5px;
}

.select-service-btn {
    align-self: flex-start;
    padding: 8px 16px;
    background: linear-gradient(135deg, #0078ff 0%, #00c6ff 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.select-service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 120, 255, 0.3);
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-state p {
    font-size: 1.1rem;
    margin: 0;
}

/* Custom Service Card Styles */
.custom-service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 2px dashed #0078ff;
}

.custom-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 120, 255, 0.2);
    border-color: #00c6ff;
}

.custom-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-plus-icon {
    font-size: 4rem;
    color: #0078ff;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.custom-service-card:hover .custom-plus-icon {
    font-size: 5rem;
    color: #00c6ff;
    transform: scale(1.1);
}

/* Custom Package Modal Styles */
.custom-package-form {
    width: 90%;
    max-width: 800px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    animation: slideIn 0.3s ease-out;
    position: relative;
    z-index: 10000;
}

/* Modal Overlay - Fixed positioning */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.custom-package-form .modal-header {
    background: linear-gradient(135deg, #0078ff 0%, #00c6ff 100%);
    color: white;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-package-form .modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.custom-package-form .modal-close {
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
}

.custom-package-form .modal-close:hover {
    background: rgba(255,255,255,0.4);
}

.custom-package-form .modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 30px;
}

.custom-package-form .form-group {
    margin-bottom: 20px;
}

.custom-package-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.custom-package-form .form-group input,
.custom-package-form .form-group select,
.custom-package-form .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.custom-package-form .form-group input:focus,
.custom-package-form .form-group select:focus,
.custom-package-form .form-group textarea:focus {
    outline: none;
    border-color: #0078ff;
    box-shadow: 0 0 0 3px rgba(0, 120, 255, 0.1);
}

.custom-package-form .form-text {
    display: block;
    margin-top: 5px;
    font-size: 0.85rem;
    color: #666;
}

.custom-package-form .form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.custom-package-form .success-message {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.custom-package-form .success-message i {
    font-size: 1.2rem;
}

.custom-package-form .modal-footer {
    background: #f5f5f5;
    padding: 20px 30px;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    border-top: 1px solid #e0e0e0;
}

.custom-package-form .btn-cancel,
.custom-package-form .btn-submit {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.custom-package-form .btn-cancel {
    background: white;
    color: #666;
    border: 2px solid #e0e0e0;
}

.custom-package-form .btn-cancel:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

.custom-package-form .btn-submit {
    background: linear-gradient(135deg, #0078ff 0%, #00c6ff 100%);
    color: white;
}

.custom-package-form .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 120, 255, 0.3);
}

/* Categories and Subcategories Styling */
.categories-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.category-section {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #e0e0e0;
}

.category-title {
    margin: 0 0 15px 0;
    font-weight: 700;
    color: #0078ff;
    font-size: 1.1rem;
    padding-bottom: 10px;
    border-bottom: 2px solid #0078ff;
}

.subcategories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
}

.subcategory-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.subcategory-header {
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 80px;
    cursor: pointer;
    transition: all 0.3s;
}

.subcategory-card:hover .subcategory-header {
    border-color: #0078ff;
    background: #f0f7ff;
}

.subcategory-name {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
    margin-bottom: 8px;
    word-wrap: break-word;
}

.subcategory-action {
    color: #0078ff;
    font-size: 1.2rem;
    text-align: right;
}

.subcategory-card:hover {
    border-color: #0078ff;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 120, 255, 0.15);
}

/* Service Cards Styling */
.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
}

.service-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100px;
}

.service-card:hover {
    border-color: #00c6ff;
    background: #f0f9ff;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 198, 255, 0.15);
}

.service-card.no-service {
    border-style: dashed;
    border-color: #00c6ff;
}

/* .service-name {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
    margin-bottom: 10px;
} */

.service-price {
    color: #0078ff;
    font-weight: 700;
    font-size: 1.1rem;
}

.selected-item {
    background: #f0f7ff;
    border: 2px solid #0078ff;
    border-radius: 8px;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.selected-item span {
    font-weight: 600;
    color: #333;
}

.service-price {
    display: block;
    color: #0078ff;
    font-weight: 700;
    margin-top: 5px;
}

.btn-change {
    padding: 6px 12px;
    background: #ff6b6b;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-left: 10px;
}

.btn-change:hover {
    background: #ff5252;
    transform: scale(1.05);
}

/* Services Dropdown */
.services-dropdown {
    background: white;
    border: 1px solid #e0e0e0;
    border-top: none;
    padding: 0;
    margin: 0;
    border-radius: 0 0 8px 8px;
    max-width: 100%;
    overflow-x: hidden;
}

.service-option {
    padding: 15px;
    background: white;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-option:last-child {
    border-bottom: none;
}

.service-option:hover {
    background: #f9f9f9;
    padding-left: 20px;
}

.service-option input[type="checkbox"] {
    cursor: pointer;
    width: 20px;
    height: 20px;
    accent-color: #0078ff;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
}

.service-option > div {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.service-option span {
    flex: 1;
    word-break: break-word;
    overflow-wrap: break-word;
}

.service-option strong {
    color: #333;
    font-weight: 600;
    display: block;
}

.custom-price-input {
    padding: 8px 12px !important;
    border: 2px solid #0078ff !important;
    border-radius: 6px !important;
    margin-left: 0 !important;
    width: 100% !important;
    min-width: auto !important;
    font-size: 0.95rem !important;
    background: #f9f9f9 !important;
}

.custom-price-input::placeholder {
    color: #999;
}

.custom-price-input:focus {
    background: white !important;
    border-color: #00c6ff !important;
}

/* Selected Items Summary */
.selected-items-summary {
    background: #f0f7ff;
    border: 2px solid #0078ff;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
}

.selected-items-summary h5 {
    margin: 0 0 10px 0;
    color: #0078ff;
    font-weight: 700;
}

.selected-items-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 10px;
}

.selected-item-tag {
    background: white;
    border: 1px solid #0078ff;
    border-radius: 6px;
    padding: 10px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
}

.selected-item-tag span {
    color: #333;
    font-weight: 500;
}

.btn-remove {
    background: #ff6b6b;
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 0.8rem;
}

.btn-remove:hover {
    background: #ff5252;
    transform: scale(1.1);
}

.btn-clear-all {
    width: 100%;
    padding: 10px;
    background: white;
    color: #ff6b6b;
    border: 2px solid #ff6b6b;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-clear-all:hover {
    background: #ffe0e0;
}

/* Inquiry Details Section */
.inquiry-details-section {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
}

.inquiry-details-section h5 {
    margin: 0 0 15px 0;
    color: #333;
    font-weight: 700;
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-info h1 {
        font-size: 2rem;
    }

    .hero-logo {
        width: 150px;
        height: 150px;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }

    .event-service-card-modal {
        flex-direction: column;
    }

    .event-service-image-modal {
        width: 100%;
    }

    .modal-filters {
        grid-template-columns: 1fr;
    }

    .selected-service-card {
        flex-direction: column;
    }

    .service-image-thumb {
        width: 100%;
    }
}
