.dynamic-pricing-table {
    max-width: 1200px;
    margin: 0 auto;
    background: #f5f5f5;
    padding: 40px 20px;
}

/* Toggle Buttons */
.duration-toggle,
.currency-switcher {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.duration-toggle button,
.currency-switcher button {
    padding: 12px 24px;
    border: none;
    background: #333;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.duration-toggle button.active,
.currency-switcher button.active {
    background: #FF6B6B;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
}

.dropdown-toggle.active {
    border-radius: 4px 4px 0 0;
    border-bottom: none;
}

/* Pricing Cards */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.pricing-card {
    background: linear-gradient(145deg, 
        #0F0F0F 0%, 
        #B91D1F 50%,
        #4A0405 100%
    );
    border-radius: 8px;
    padding: 30px;
    color: #fff;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Update the overlay with noise pattern */
.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.05) 0%,
            rgba(0, 0, 0, 0.2) 100%
        ),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.07;
    mix-blend-mode: overlay;
    pointer-events: none;
}

/* Add a subtle inner shadow */
.pricing-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at top left,
        rgba(255, 255, 255, 0.1),
        transparent 70%
    );
    pointer-events: none;
}

/* Enhance hover effect */
.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.pricing-card:hover::before {
    opacity: 0.09;
}

/* Ensure content stays above the overlay */
.pricing-card > * {
    position: relative;
}

/* Card Header */
.pricing-card h3 {
    color: #FF6B6B;
    font-size: 28px;
    margin: 0;
    text-align: center;
}

.pricing-card .subtitle {
    color: #fff;
    opacity: 0.8;
    margin: 8px 0 24px;
    text-align: center;
    font-size: 15px;
}

/* Price Section */
.pricing-card .price {
    text-align: center;
    margin: 0 0 30px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.pricing-card .price .currency {
    font-size: 20px;
    font-weight: 500;
    color: #888;
}

.controls-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.pricing-card .price .amount {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
}

.pricing-card .price .duration {
    font-size: 14px;
    font-weight: 400;
    color: #888;
    margin-left: 4px;
}

/* Features */
.pricing-card .features {
    flex: 1;
    margin: 20px 0;
}

.pricing-card .feature {
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0px;
    font-size: 14px;
}

.pricing-card .feature-calculation {
    display: flex;
    align-items: center;
    gap: 4px;
    color: rgba(255, 255, 255, 0.8);
}

.pricing-card .feature-price {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-weight: 500;
}

.pricing-card .feature .currency {
    font-family: "Arial", sans-serif;
    margin-right: 1px;
}

.pricing-card .feature:before {
    content: "✓";
    color: #FF6B6B;
    margin-right: 10px;
    font-weight: bold;
}

.pricing-card .feature.disabled {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

.pricing-card .feature.disabled:before {
    content: "×";
    color: rgba(255, 255, 255, 0.4);
}

/* Button */
.pricing-card .cta-button {
    background: #FF6B6B;
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    margin: 20px 0;
    width: 100%;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
}

.pricing-card .cta-button:hover {
    background: #ff5252;
    text-decoration: none;
    color: #fff;
}

/* Discount Info */
.pricing-card .discount-info {
    color: #FF6B6B;
    font-size: 13px;
    line-height: 1.6;
    text-align: center;
    margin-top: 15px;
}

/* Responsive */
@media (max-width: 1024px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .duration-toggle,
    .currency-switcher {
        flex-wrap: wrap;
    }
    
    .duration-toggle button,
    .currency-switcher button {
        width: calc(33.33% - 8px);
        min-width: auto;
        padding: 10px;
        font-size: 14px;
    }
    
    .pricing-card {
        padding: 24px;
    }
    
    .pricing-card h3 {
        font-size: 24px;
    }
    
    .pricing-card .price .amount {
        font-size: 32px;
    }
}

/* Pricing Header */
.pricing-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.pricing-title {
    font-size: 32px;
    font-weight: 600;
    color: #FF6B6B;
    margin: 0 0 16px;
    line-height: 1.2;
}

.pricing-description {
    font-size: 16px;
    color: #666;
    margin: 0 0 32px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Currency Selector Styles */
.currency-selector {
    display: flex;
    justify-content: center;
    position: relative;
    margin-bottom: 20px;
}

.currency-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle .flag {
    width: 20px;
    height: 15px;
    object-fit: cover;
}

.dropdown-toggle .currency-code {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.dropdown-toggle .dropdown-arrow {
    margin-left: auto;
    color: #666;
    transition: transform 0.2s ease;
}

.currency-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 200px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
    margin-top: -1px;
}

.currency-dropdown.open .dropdown-menu {
    display: block;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    cursor: pointer;
    transition: background 0.2s;
}

.dropdown-item:hover {
    background: #f5f5f5;
}

.dropdown-item.active {
    background: #e9ecef;
}

.dropdown-item .flag {
    width: 20px;
    height: 15px;
    object-fit: cover;
}

.dropdown-item .currency-code {
    font-size: 14px;
    color: #333;
}

/* Update flag styles */
.flag {
    font-size: 1.2em;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
}

.dropdown-toggle .flag {
    margin-right: 8px;
}

.dropdown-item .flag {
    margin-right: 8px;
}

/* Feature calculation styles */
.feature .calculation {
    color: rgba(255, 255, 255, 0.8);
}

.feature.disabled .calculation {
    color: rgba(255, 255, 255, 0.4);
}

.feature .unit-price,
.feature .total {
    font-weight: 500;
}

/* Featured Package Styles */
.pricing-card.featured {
    transform: scale(1.05);
    z-index: 2;
    border: 2px solid #FF6B6B;
    position: relative;
}

.pricing-card.featured::before {
    content: 'Popular Choice';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF6B6B;
    color: #fff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.pricing-card.featured:hover {
    transform: scale(1.07);
}

/* Adjust other cards when featured is present */
.pricing-cards:has(.featured) .pricing-card:not(.featured) {
    transform: scale(0.95);
}

.pricing-cards:has(.featured) .pricing-card:not(.featured):hover {
    transform: scale(0.97);
}

/* Add transition for smooth scaling */
.pricing-card {
    transition: all 0.3s ease;
}

/* Ensure featured card stays above others */
.pricing-card.featured {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .pricing-title {
        font-size: 28px;
    }

    .pricing-description {
        font-size: 15px;
        margin-bottom: 24px;
    }
}

/* Modal Styles */
.package-form-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.package-form-modal.show {
    display: block;
}

.modal-content {
    position: relative;
    background: #fff;
    width: 90%;
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    border-radius: 8px;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Form Styles */
.package-form {
    margin-top: 20px;
}

.form-group {
    margin-bottom: 5px;
}

.form-group.required label::after {
    content: '*';
    color: #ff0000;
}

/* Add more styles as needed */

/* Form Page Styles */
.package-form-page {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
}

.package-details {
    background: #f8f8f8;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.package-info {
    display: grid;
    gap: 10px;
}

.package-info p {
    margin: 0;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.package-info p:last-child {
    border-bottom: none;
}

.package-info strong {
    color: #333;
    min-width: 100px;
    display: inline-block;
}

.inquiry-form {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Form field styles */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 15px;
}

.wpcf7-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}



/* Ensure normal links work */
.cta-button,
.pricing-card a {
    pointer-events: auto !important;
    cursor: pointer !important;
}

/* Add these styles for feature prices */
.feature .feature-price {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: rgba(255, 255, 255, 0.8);
}

.feature .unit-price,
.feature .total-price {
    font-weight: 500;
}

.feature .currency-symbol {
    font-weight: 500;
    margin: 0 2px;
    font-family: "Arial", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
}


/* Hide package info fields by default */
.package-info-field {
    display: none !important;
}

/* Show if has value */
.package-info-field[value] {
    display: block !important;
}

/* Style for pre-filled fields */
.package-info-field[readonly] {
    background-color: #f5f5f5 !important;
    cursor: not-allowed !important;
}

/* Elementor form hidden fields */
.elementor-field-type-hidden {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Package details display */
.package-details-display {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.package-details-display h3 {
    margin: 0 0 15px;
    color: #333;
    font-size: 18px;
}

.package-details-display p {
    margin: 5px 0;
    color: #666;
}

.package-details-display strong {
    color: #333;
    font-weight: 600;
}

/* Form Success Message */
.form-success-message {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 40px auto;
    max-width: 600px;
}

.form-success-message h2 {
    color: #28a745;
    font-size: 24px;
    margin-bottom: 20px;
}

.form-success-message p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.form-success-message .back-home {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.form-success-message .back-home:hover {
    background: #0056b3;
}

.form-container {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Style for pre-filled fields */
.package-field[readonly] {
    background-color: #f5f5f5 !important;
    cursor: not-allowed !important;
}

/* Hidden fields styling */
.hidden-package-field {
    display: none !important;
}

/* Form container styling */
.form-container {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Package info display */
.package-info {
    background: #f8f8f8;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

/* Add these styles */
.prefilled {
    background-color: #f5f5f5 !important;
    cursor: not-allowed !important;
    border-color: #ddd !important;
}

.country-flag {
    font-size: 1.2em;
}

/* Package Controls */
.package-controls {
    width: 100%;
    margin-bottom: 30px;
}

.controls-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.duration-toggle {
    display: flex;
    gap: 15px;
}

/* Make all buttons equal width by default */
.duration-toggle button,
.dropdown-toggle {
    flex: 1;
    width: 120px; /* Default width */
    min-width: 120px;
    height: 48px;
    padding: 0 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Responsive defaults */
@media screen and (max-width: 768px) {
    .duration-toggle button,
    .dropdown-toggle {
        width: 100px;
        min-width: 100px;
        height: 40px;
        padding: 0 10px;
    }
}

@media screen and (max-width: 425px) {
    .controls-wrapper {
        gap: 8px;
    }
    
    .duration-toggle {
        gap: 8px;
    }

    .duration-toggle button,
    .dropdown-toggle {
        width: 85px;
        min-width: 85px;
        height: 36px;
        padding: 0 8px;
        font-size: 11px;
    }
}

@media screen and (max-width: 375px) {
    .controls-wrapper {
        gap: 6px;
    }

    .duration-toggle {
        gap: 6px;
    }

    .duration-toggle button,
    .dropdown-toggle {
        width: 75px;
        min-width: 75px;
        height: 34px;
        padding: 0 6px;
    }
}

@media screen and (max-width: 320px) {
    .controls-wrapper {
        gap: 4px;
    }

    .duration-toggle {
        gap: 4px;
    }

    .duration-toggle button,
    .dropdown-toggle {
        width: 65px;
        min-width: 65px;
        height: 32px;
        padding: 0 4px;
    }
}

/* Common styles for all mobile sizes */
@media screen and (max-width: 425px) {
    .controls-wrapper {
        width: 100%;
        justify-content: center;
    }

    .duration-toggle,
    .currency-selector {
        flex-shrink: 0;
    }

    /* Hide currency code on mobile */
    .dropdown-toggle .currency-code {
        display: none;
    }

    /* Optimize spacing */
    .dropdown-toggle {
        gap: 2px;
    }
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .dropdown-menu {
        min-width: 180px;
    }
}

@media screen and (max-width: 480px) {
    .dropdown-menu {
        min-width: 160px;
        right: 0;
        left: auto;
    }

    /* Prevent overflow */
    .currency-dropdown {
        position: relative;
    }

    /* Add max-height and scrolling for very long lists */
    .dropdown-menu {
        max-height: 300px;
        overflow-y: auto;
    }
}

/* Ensure dropdown is visible */
.dropdown-menu.show {
    display: block;
}

/* Prevent text overflow in dropdown items */
.dropdown-item {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-item:last-child {
    border-radius: 0 0 4px 4px;
} 


/* Customize Package Table Styles */
.customize-package-table {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 15px;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 4px;
    font-weight: 600;
}

.feature-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 15px;
    padding: 15px;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.feature-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-cell {
    display: flex;
    align-items: center;
    gap: 5px;
}

.qty-btn {
    padding: 5px 10px;
    border: 1px solid #ddd;
    background: #f5f5f5;
    cursor: pointer;
}

.qty-input {
    width: 60px;
    padding: 5px;
    text-align: center;
}

.package-total {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 4px;
}

.submit-package {
    display: block;
    width: 100%;
    padding: 15px;
    margin-top: 20px;
    background: #FF6B6B;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

.submit-package:hover {
    background: #ff5252;
}

.currency-switcher-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.currency-display {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 16px;
    padding: 4px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
}

.currency-switcher {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    appearance: none;
    -webkit-appearance: none;
}

/* Remove background image related styles since we're using emoji */
.currency-switcher-wrapper:after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #666;
    pointer-events: none;
}

/* Style for flag options */
.currency-option {
    display: flex;
    align-items: center;
    padding: 5px 10px;
}

.currency-flag {
    width: 20px;
    height: 15px;
    margin-right: 10px;
    object-fit: cover;
}

/* Package Controls Section - Updated */
.package-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    width: 100%;
    position: relative;
}

.package-controls-custom {
    justify-content: space-between;
    display: flex;
    gap: 10px;
;
}

.dropdown-wrapper {
    position: relative;
    margin: 0;
    padding: 0;
}

/* Set specific widths for each dropdown - Updated */
.dropdown-wrapper:first-child {
    width: 85%;
    position: relative;
}

.dropdown-wrapper:last-child {
    width: 15%;
    min-width: 80px;
}

/* Solution type select styles - New */
.solution-type-wrapper {
    position: relative;
    width: 100%;
}

.solution-type-select {
    width: 100%;
    padding: 12px 35px 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
    font-size: 16px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Custom dropdown arrow - Updated */
.solution-type-wrapper::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #666;
    pointer-events: none;
}

/* Hover states - Updated */
.solution-type-select:hover,
.solution-type-select:focus {
    border-color: #999;
    outline: none;
}

/* Hide default select arrow in IE */
.solution-type-select::-ms-expand {
    display: none;
}

/* Responsive styles - Updated */
@media screen and (max-width: 768px) {
    .package-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .dropdown-wrapper:first-child,
    .dropdown-wrapper:last-child {
        width: 100%;
    }

    .solution-type-select {
        width: 100%;
    }
}

/* Package Controls Section */
.package-controls {
    display: flex;
    justify-content: center; /* Changed from flex-end */
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    width: 100%;
}

/* Update dropdown wrapper styles */
.dropdown-wrapper {
    flex: none; /* Remove flex:1 */
}

/* Set specific widths for each dropdown */
.dropdown-wrapper:first-child {
    width: 85%; /* Solution type dropdown */
}

.dropdown-wrapper:last-child {
    width: 15%; /* Currency switcher dropdown */
    min-width: 80px; /* Ensure minimum width for currency */
}

/* Adjust max-width */
.dropdown-wrapper {
    max-width: none; /* Remove previous max-width limitation */
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .package-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .dropdown-wrapper:first-child,
    .dropdown-wrapper:last-child {
        width: 100%; /* Full width on mobile */
    }

    .dropdown-wrapper:last-child {
        min-width: 100%; /* Reset min-width on mobile */
    }
}

/* Common styles for both dropdowns */
.dropdown-wrapper {
    flex: 1; /* Make dropdowns take equal space */
    max-width: 250px; /* Maximum width for each dropdown */
}

.currency-switcher-wrapper,
.solution-type-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.currency-display,
.solution-display {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    width: 100%;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.currency-switcher {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    appearance: none;
    -webkit-appearance: none;
}

/* Hover and focus states */
.currency-display:hover,
.solution-display:hover,
.currency-switcher:hover + .currency-display,
.solution-type-select:hover + .solution-display {
    border-color: #999;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .package-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .dropdown-wrapper {
        max-width: 100%;
        width: 100%;
    }
}

/* Package Controls Section */
.package-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    width: 100%;
}

/* Dropdown wrappers */
.dropdown-wrapper {
    position: relative;
}

.dropdown-wrapper:first-child {
    width: 85%;
}

.dropdown-wrapper:last-child {
    width: 15%;
    min-width: 80px;
}

/* Select styles */
.solution-type-select,
.currency-switcher {
    width: 100%;
    padding: 12px 35px 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
    font-size: 16px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* Custom dropdown arrow */
.solution-type-wrapper::after,
.currency-switcher-wrapper::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #666;
    pointer-events: none;
}

/* Hover states */
.solution-type-select:hover,
.currency-switcher:hover {
    border-color: #999;
}

/* Focus states */
.solution-type-select:focus,
.currency-switcher:focus {
    outline: none;
    border-color: #666;
}

/* Currency display styles */


/* Responsive styles */
@media screen and (max-width: 768px) {
    .package-controls {
        flex-direction: column;
    }

    .dropdown-wrapper:first-child,
    .dropdown-wrapper:last-child {
        width: 100%;
    }
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal-content {
    position: relative;
    background: #fff;
    width: 90%;
    max-width: 800px;
    margin: 50px auto;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.form-group {
    margin-bottom: 5px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.package-summary {
    margin: 20px 0;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 4px;
}

.package-summary ul {
    margin: 0;
    padding-left: 20px;
}

/* Modal/Popup Styles */
#contact-form-modal .modal-content {
    position: relative;
    background: #fff;
    width: 90%;
    max-width: 800px;
    margin: 40px auto;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

#contact-form-modal h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #333;
    text-align: center;
    font-weight: 600;
}

#contact-form-modal .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

#contact-form-modal .form-group {
    margin-bottom: 5px;
}

#contact-form-modal .form-group.full-width {
    grid-column: 1 / -1;
}

#contact-form-modal label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}

#contact-form-modal input,
#contact-form-modal textarea,
#contact-form-modal select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s ease;
}

#contact-form-modal textarea {
    min-height: 120px;
    resize: vertical;
}

#contact-form-modal input:focus,
#contact-form-modal textarea:focus,
#contact-form-modal select:focus {
    border-color: #FF6B6B;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
    outline: none;
}

#contact-form-modal .close-modal {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 32px;
    height: 32px;
    background: #FF6B6B;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

#contact-form-modal .close-modal:hover {
    transform: scale(1.1);
    background: #ff5252;
}

#contact-form-modal .submit-final-form {
    width: 100%;
    padding: 14px;
    background: #FF6B6B;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

#contact-form-modal .submit-final-form:hover {
    background: #ff5252;
    transform: translateY(-1px);
}

@media screen and (max-width: 768px) {
    #contact-form-modal .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    #contact-form-modal .modal-content {
        padding: 25px;
        margin: 20px;
        width: calc(100% - 40px);
    }
}

/* Required Field Indicator */
.form-group.required label::after {
    content: ' *';
    color: #ff0000;
}

/* Radio Group Styling */
.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 8px;
}

.radio-label {
    display: flex!important;
    align-items: center!important;
    gap: 8px;
    cursor: pointer;
}

/* Checkbox Styling */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    margin-top: 8px;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
}

/* Multiple Select Styling */
select[multiple] {
    min-height: 100px;
    padding: 8px;
}

select[multiple] option {
    padding: 4px 8px;
}

/* Form Group Modifications */
.form-group.full-width {
    width: 100%;
}

/* Replace existing checkbox and select styles with these */
#contact-form-modal select:not([multiple]) {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s ease;
    background-color: #fff;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23666%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.4-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px auto;
}

/* Improved Checkbox Styling */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    margin-top: 8px;
    padding: 8px;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.checkbox-label:hover {
    background-color: rgba(255, 107, 107, 0.05);
}

.checkbox-label input[type="checkbox"] {
    position: relative;
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 2px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked {
    background-color: #FF6B6B;
    border-color: #FF6B6B;
}

.checkbox-label input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-label span {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
    padding-top: 2px;
}

/* Custom Multiple Select for Package Customization */
.customize-package-table select[multiple] {
    min-height: 120px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: #fff;
    font-size: 14px;
}

.customize-package-table select[multiple] option {
    padding: 8px 12px;
    margin: 2px 0;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.customize-package-table select[multiple] option:checked {
    background: linear-gradient(0deg, #FF6B6B 0%, #FF6B6B 100%);
    color: #fff;
}

.customize-package-table select[multiple] option:hover {
    background-color: rgba(255, 107, 107, 0.1);
}

/* Radio Group Enhancement */
.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 12px;
}

.radio-label {
    display: flex;
    align-items: center!important;
    gap: 8px;
    cursor: pointer;
    /* padding: 8px 12px; */
    border-radius: 6px;
    transition: background-color 0.2s;
}

.radio-label:hover {
    background-color: rgba(255, 107, 107, 0.05);
}

.radio-label input[type="radio"] {
    position: relative;
    width: 10px!important;
    margin: 0;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 2px solid #ddd;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.radio-label input[type="radio"]:checked {
    border-color: #FF6B6B;
}

.radio-label input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #FF6B6B;
}

.radio-label span {
    font-size: 14px;
    color: #555;
}

/* Multiple Select Styling */
.solution-type-wrapper select[multiple] {
    width: 100%;
    padding: 10px 35px 10px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    background-color: #fff;
    cursor: pointer;
    min-height: 45px;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23666%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.4-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px auto;
}

.solution-type-wrapper select[multiple] option {
    padding: 8px 12px;
    border-radius: 4px;
    margin: 2px 0;
}

.solution-type-wrapper select[multiple] option:checked {
    background: linear-gradient(0deg, #FF6B6B 0%, #FF6B6B 100%);
    color: #fff;
}

/* Selected Options Display */
.solution-type-wrapper {
    position: relative;
}

/* Remove or hide selected-options-display since we're using Select2 */
.selected-options-display {
    display: none;
}

/* Enhance Select2 display */
.solution-type-wrapper .select2-container .select2-selection--multiple {
    min-height: 50px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    padding: 5px 35px 5px 10px;
    display: flex;
    align-items: center;
}

.solution-type-wrapper .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    padding: 0;
    margin: 0;
}

/* Style for selected items */
.solution-type-wrapper .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background: #FF6B6B;
    border: none;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    margin: 2px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Make placeholder visible when no selection */
.solution-type-wrapper .select2-container--default .select2-selection--multiple .select2-selection__placeholder {
    color: #666;
    display: block;
    padding: 3px 5px;
}

/* Select2 Custom Styling */
.solution-type-wrapper .select2-container {
    width: 100% !important;
}

.solution-type-wrapper .select2-container .select2-selection--multiple {
    min-height: 50px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
}

.solution-type-wrapper .select2-container--default .select2-selection--multiple {
    padding: 5px;
}

.solution-type-wrapper .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background: #FF6B6B;
    border: none;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    margin: 2px;
}

.solution-type-wrapper .select2-container--default .select2-selection__choice__remove {
    color: #fff;
    margin-right: 5px;
}

.solution-type-wrapper .select2-container--default .select2-selection__choice__remove:hover {
    color: #fff;
    opacity: 0.8;
}

.solution-type-wrapper .select2-dropdown {
    border-color: #ddd;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.solution-type-wrapper .select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #FF6B6B;
}

.solution-type-wrapper .select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #ffeded;
    color: #FF6B6B;
}

/* Placeholder styling */
.solution-type-wrapper .select2-container--default .select2-selection--multiple .select2-selection__placeholder {
    color: #666;
}

/* Clear button styling */
.solution-type-wrapper .select2-container--default .select2-selection--multiple .select2-selection__clear {
    margin-right: 10px;
    color: #666;
}

.solution-type-wrapper .select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: #FF6B6B;
    box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.1);
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
    cursor: default;
    padding-left: 5px!important;
    padding-right: 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    border-right: none;
    top: 4px
}


label.checkbox-label{
    display:flex!important;
    align-items: center;
}
label.checkbox-label input{
    width: 10px!important;
}