/* Mile High Networks Pricing Tool - MOBILE VERSION */

/* Mobile Container */
.mhn-pricing-tool-mobile {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    max-width: 100%;
    margin: 0;
    padding: 0;
    background: #fff;
}

/* Header */
.mhn-mobile-header {
    background: #3b82f6;
    color: white;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.mhn-mobile-header h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.mhn-mobile-address {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 8px;
}

/* Step Indicator */
.mhn-mobile-steps {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background: #f9fafb;
    margin-bottom: 20px;
}

.mhn-mobile-step {
    flex: 1;
    text-align: center;
    padding: 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #9ca3af;
}

.mhn-mobile-step.active {
    background: #dbeafe;
    color: #1e40af;
}

.mhn-mobile-step.completed {
    color: #10b981;
}

/* Content Area */
.mhn-mobile-content {
    padding: 0 15px 20px 15px;
}

/* Pricing Plans - Vertical Stack */
.mhn-mobile-plan {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.2s;
}

.mhn-mobile-plan.selected {
    border-color: #3b82f6;
    background: #eff6ff;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.mhn-mobile-plan.featured {
    border-color: #f59e0b;
    position: relative;
}

.mhn-mobile-plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #f59e0b;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.mhn-mobile-plan-name {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937 !important;
    margin: 0 0 8px 0;
}

.mhn-mobile-plan-tagline {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 15px 0;
}

.mhn-mobile-plan-speeds {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding: 12px;
    background: #f9fafb;
    border-radius: 8px;
}

.mhn-mobile-speed {
    flex: 1;
}

.mhn-mobile-speed-label {
    font-size: 11px;
    color: #6b7280;
    text-transform: uppercase;
    font-weight: 600;
}

.mhn-mobile-speed-value {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin-top: 4px;
}

.mhn-mobile-plan-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.mhn-mobile-plan-bullets li {
    padding: 6px 0;
    font-size: 14px;
    color: #4b5563;
}

.mhn-mobile-plan-bullets li:before {
    content: "✓ ";
    color: #10b981;
    font-weight: bold;
    margin-right: 8px;
}

.mhn-mobile-plan-price {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
}

.mhn-mobile-plan-price-suffix {
    font-size: 16px;
    color: #6b7280;
}

.mhn-mobile-plan-select-btn {
    width: 100%;
    padding: 12px;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.mhn-mobile-plan-select-btn:hover {
    background: #2563eb;
}

.mhn-mobile-plan-select-btn:active {
    transform: scale(0.98);
}

.mhn-mobile-plan.selected .mhn-mobile-plan-select-btn {
    background: #10b981;
    color: white;
}


/* Sticky Bottom Button */
.mhn-mobile-nav {
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 15px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.mhn-mobile-btn {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.mhn-mobile-btn-primary {
    background: #3b82f6;
    color: white;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.mhn-mobile-btn-primary:active {
    background: #2563eb;
}

.mhn-mobile-btn-primary:disabled {
    background: #93c5fd; /* Light blue instead of gray */
    color: #1e40af; /* Dark blue text */
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.7;
}

.mhn-mobile-btn-primary.mhn-button-pulse {
    animation: buttonPulse 0.5s ease-in-out 3;
}

@keyframes buttonPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 0 8px rgba(59, 130, 246, 0);
    }
}

.mhn-mobile-btn-secondary {
    background: #f3f4f6;
    color: #374151;
    margin-bottom: 10px;
}

/* Calendar */
.mhn-mobile-calendar {
    margin-bottom: 20px;
}

.mhn-mobile-date-group {
    margin-bottom: 20px;
}

.mhn-mobile-date-header {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e5e7eb;
}

.mhn-mobile-time-slots {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}

.mhn-mobile-time-slot {
    padding: 12px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.mhn-mobile-time-slot:hover {
    border-color: #3b82f6;
}

.mhn-mobile-time-slot.selected {
    border-color: #3b82f6;
    background: #eff6ff;
    color: #1e40af;
}

/* Form */
.mhn-mobile-form-field {
    margin-bottom: 15px;
}

.mhn-mobile-form-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

.mhn-mobile-form-field input,
.mhn-mobile-form-field select {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    box-sizing: border-box;
}

.mhn-mobile-form-field input:focus,
.mhn-mobile-form-field select:focus {
    outline: none;
    border-color: #3b82f6;
}

/* Review */
.mhn-mobile-review-section {
    background: #f9fafb;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.mhn-mobile-review-section h3 {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.mhn-mobile-review-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 15px;
}

.mhn-mobile-review-label {
    color: #6b7280;
}

.mhn-mobile-review-value {
    font-weight: 600;
    color: #1f2937;
}

.mhn-mobile-review-total {
    border-top: 2px solid #e5e7eb;
    padding-top: 12px;
    margin-top: 12px;
}

.mhn-mobile-review-total .mhn-mobile-review-value {
    font-size: 20px;
    color: #1e40af;
}

/* Loading */
.mhn-mobile-loading {
    text-align: center;
    padding: 40px 20px;
    color: #6b7280;
}

/* Confirmation */
.mhn-mobile-confirmation {
    text-align: center;
    padding: 40px 20px;
}

.mhn-mobile-confirmation-icon {
    width: 80px;
    height: 80px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 20px;
}

.mhn-mobile-confirmation h2 {
    font-size: 24px;
    color: #1f2937;
    margin-bottom: 10px;
}

.mhn-mobile-confirmation p {
    color: #6b7280;
    font-size: 16px;
}

/* Hidden */
.mhn-mobile-hidden {
    display: none;
}
